前提・実現したいこと
ワードプレスでアドセンスブログを運営しております。
昨日(3/5)まで記事投稿が出来ていたのですが、本日は致命的なエラーの表示が出ており
記事投稿が出来ません。
ログインは出来ダッシュボードは表示されるのですが、他の操作をすると「致命的なエラー」
の表示になります。
※追記
回答をいただきログインしたところ、ログインができなくなってしまいました。
初めてのことで何をどうしたらいいのか分からず、解決していただくために必要なソースコードも提示出来ておりません。
お手数をおかけしますが、「致命的なエラー」の解決方法と併せて、ログインができるよう対処方法もご教示いただけますでしょうか?
どうぞよろしくお願いいたします。
発生している問題・エラーメッセージ
致命的なエラー:44行目の/home/tuiteru189/antiaging50.com/public_html/wp-content/plugins/quick-adsense-reloaded/includes/gutenberg/src/init.phpの未定義関数register_block_type()の呼び出し
該当のソースコード
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } function quads_block_assets() { // phpcs:ignore // Register block styles for both frontend + backend. wp_register_style( 'quads-style-css', // Handle. plugins_url( 'dist/blocks.style.build.css', dirname( __FILE__ ) ), // Block style CSS. is_admin() ? array( 'wp-editor' ) : null, // Dependency to include the CSS after it. null // filemtime( plugin_dir_path( __DIR__ ) . 'dist/blocks.style.build.css' ) // Version: File modification time. ); // Register block editor script for backend. wp_register_script( 'quads-js', // Handle. plugins_url( '/dist/blocks.build.js', dirname( __FILE__ ) ), // Block.build.js: We register the block here. Built with Webpack. array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ), // Dependencies, defined above. null, // filemtime( plugin_dir_path( __DIR__ ) . 'dist/blocks.build.js' ), // Version: filemtime ? Gets file modification time. true // Enqueue the script in the footer. ); // Register block editor styles for backend. wp_register_style( 'quads-editor-css', // Handle. plugins_url( 'dist/blocks.editor.build.css', dirname( __FILE__ ) ), // Block editor CSS. array( 'wp-edit-blocks' ), // Dependency to include the CSS after it. null // filemtime( plugin_dir_path( __DIR__ ) . 'dist/blocks.editor.build.css' ) // Version: File modification time. ); // WP Localized globals. Use dynamic PHP stuff in JavaScript via `quadsGlobal` object. wp_localize_script( 'quads-js', 'quadsGlobal', // Array containing dynamic data for a JS Global. array( 'pluginDirPath' => plugin_dir_path( __DIR__ ), 'pluginDirUrl' => plugin_dir_url( __DIR__ ), 'quads_get_ads' => quads_get_ads(), // Add more data here that you want to access from `quads_get_ads ` object. ) ); register_block_type( 'quads/adds', array( // Enqueue blocks.style.build.css on both frontend & backend. 'style' => 'quads-style-css', // Enqueue blocks.build.js in the editor only. 'editor_script' => 'quads-js', // Enqueue blocks.editor.build.css in the editor only. 'editor_style' => 'quads-editor-css', ) ); } // Hook: Block assets. add_action( 'init', 'quads_block_assets' ); ``` ### 試したこと Google検索からこちらのサイトを見つけたことです。 追記 エックスサーバーよりソースコードを見つけましたので記載しております。 ### 補足情報(FW/ツールのバージョンなど) WordPress 4.7.16回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/06 12:41
2020/03/06 13:29
2020/03/06 13:56
2020/03/06 14:08 編集