Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the usces domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/sites/trademark/web/fullsitepatternercom/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the debug-bar domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/sites/trademark/web/fullsitepatternercom/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wp-statistics domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/sites/trademark/web/fullsitepatternercom/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the updraftplus domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/sites/trademark/web/fullsitepatternercom/wp-includes/functions.php on line 6114
プラグインの設定(不要な機能のカスタマイズ) | FullSite-Patterner-フルサイト編集ができるWordPressブロックテーマ

HOME  >  SEO PLUGIN > プラグインの設定(不要な機能のカスタマイズ)

translate by google

プラグインの設定(不要な機能のカスタマイズ)

プラグインFullSite-Patterner-seoは、下記の主要な機能を備えています。

・ショートコードの設定とパンくずリスト
・メタタグの表示
・構造化データ・OGPデータの生成

プラグインのメインファイルは、fullsite-patterer-seo.phpです。

フォルダ内の下記ファイルを呼び出す設定をするためのファイルです。

「ツール」-「プラグインファイルエディター」から、FullSite-Patterner-seoを選択して編集画面を開くと、不要な機能を読み込まずに実行しないカスタマイズができます。

fullsite-patterner-seo.phpのプログラムは、下記のプログラムを読み込んで実行します。

・shortcode.php(ショートコードの設定・ショートコードでPHPプログラム呼び出しの設定)
・canonical.php(canonicalの設定)
・head-tag.php(meta description、meta keywordの設定)
・schema-org.php(構造化データの生成)
・ogp.php(OGPデータの生成)

fullsite-patterner-seo.phpでは、各プログラムのphpファイルを呼び出しています。
不要な機能を呼び出さないように書き換えればカスタマイズできます。

下記がデフォルトのプログラム中のコードです。

	require_once FORESTCAFE_PATH . 'shortcode.php';
	require_once FORESTCAFE_PATH . 'canonical.php';
	require_once FORESTCAFE_PATH . 'head-tag.php';
	require_once FORESTCAFE_PATH . 'schema-org.php';
	require_once FORESTCAFE_PATH . 'ogp.php';

不要な機能を実行するプログラム呼び出しをする行の冒頭に、スラッシュ2つ(//)を加えるだけで、その行の実行をしなくなります。

たとえば下記のように記載してください。

下記の例では、canonicalと構造化データが不要なため、実行プログラムを呼び出さないようにしています。

	require_once FORESTCAFE_PATH . 'shortcode.php';
//	require_once FORESTCAFE_PATH . 'canonical.php';
	require_once FORESTCAFE_PATH . 'head-tag.php';
//	require_once FORESTCAFE_PATH . 'schema-org.php';
	require_once FORESTCAFE_PATH . 'ogp.php';