サイト内検索
wp_head() で出力されるタグの順番を入れ替えたい | Cocoonテーマに関する質問 | Cocoon フォーラム

Topic starter2022年5月27日 22:11
不具合・カスタマイズ対象ページのURL:
相談内容:
wp_head() で出力される<meta name="description">と<meta name="keywords">を<!-- OGP -->や<!-- Twitter Card -->よりも上部に出力させたいです。いい方法はないでしょうか?
環境情報:
----------------------------------------------
サイト名:名古屋の建築デザイン設計事務所株式会社TOのスタッフブログ
サイトURL: https://www.tototo.biz/staffblog
ホームURL: https://www.tototo.biz/staffblog
コンテンツURL:/wp-content
インクルードURL:/wp-includes/
テンプレートURL:/wp-content/themes/cocoon-master
スタイルシートURL:/wp-content/themes/cocoon-child-master
親テーマスタイル:/wp-content/themes/cocoon-master/style.css
子テーマスタイル:/wp-content/themes/cocoon-child-master/style.css
スキン:/wp-content/themes/cocoon-master/skins/skin-simplicity/style.css
WordPressバージョン:6.0
PHPバージョン:7.4.29
ブラウザ:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36
サーバーソフト:LiteSpeed
サーバープロトコル:HTTP/1.1
エンコーディング:gzip, deflate, br
言語:ja,en;q=0.9,vi;q=0.8
----------------------------------------------
テーマ名:Cocoon
バージョン:2.4.4
カテゴリ数:22
タグ数:40
ユーザー数:11
----------------------------------------------
子テーマ名:Cocoon Child
バージョン:1.1.2
style.cssサイズ:12460バイト
functions.phpサイズ:1453バイト
----------------------------------------------
Gutenberg:1
AMP:1
PWA:1
Font Awesome:5
Auto Post Thumbnail:0
Retina:0
ホームイメージ:/wp-content/uploads/2022/03/ogp.jpg
----------------------------------------------
ブラウザキャッシュ有効化:1
HTML縮小化:0
CSS縮小化:0
JavaScript縮小化:0
Lazy Load:0
WEBフォントLazy Load:1
----------------------------------------------
利用中のプラグイン:
Advanced Editor Tools (previously TinyMCE Advanced) 5.6.0
All-in-One WP Migration 7.61
All-in-One WP Migration Unlimited Extension 2.45
Classic Editor 1.6.2
Classic Widgets 0.3
Contact Form 7 5.5.6.1
Really Simple SSL 5.3.2
Redirection 5.2.3
Yoast Duplicate Post 4.4
----------------------------------------------
----------------------------------------------
サイト名:名古屋の建築デザイン設計事務所株式会社TOのスタッフブログ
サイトURL: https://www.tototo.biz/staffblog
ホームURL: https://www.tototo.biz/staffblog
コンテンツURL:/wp-content
インクルードURL:/wp-includes/
テンプレートURL:/wp-content/themes/cocoon-master
スタイルシートURL:/wp-content/themes/cocoon-child-master
親テーマスタイル:/wp-content/themes/cocoon-master/style.css
子テーマスタイル:/wp-content/themes/cocoon-child-master/style.css
スキン:/wp-content/themes/cocoon-master/skins/skin-simplicity/style.css
WordPressバージョン:6.0
PHPバージョン:7.4.29
ブラウザ:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36
サーバーソフト:LiteSpeed
サーバープロトコル:HTTP/1.1
エンコーディング:gzip, deflate, br
言語:ja,en;q=0.9,vi;q=0.8
----------------------------------------------
テーマ名:Cocoon
バージョン:2.4.4
カテゴリ数:22
タグ数:40
ユーザー数:11
----------------------------------------------
子テーマ名:Cocoon Child
バージョン:1.1.2
style.cssサイズ:12460バイト
functions.phpサイズ:1453バイト
----------------------------------------------
Gutenberg:1
AMP:1
PWA:1
Font Awesome:5
Auto Post Thumbnail:0
Retina:0
ホームイメージ:/wp-content/uploads/2022/03/ogp.jpg
----------------------------------------------
ブラウザキャッシュ有効化:1
HTML縮小化:0
CSS縮小化:0
JavaScript縮小化:0
Lazy Load:0
WEBフォントLazy Load:1
----------------------------------------------
利用中のプラグイン:
Advanced Editor Tools (previously TinyMCE Advanced) 5.6.0
All-in-One WP Migration 7.61
All-in-One WP Migration Unlimited Extension 2.45
Classic Editor 1.6.2
Classic Widgets 0.3
Contact Form 7 5.5.6.1
Really Simple SSL 5.3.2
Redirection 5.2.3
Yoast Duplicate Post 4.4
----------------------------------------------
2022年5月28日 01:18
こういうのはどうでしょうか。
add_action( 'after_setup_theme', function() { remove_action( 'wp_head', 'generate_meta_description_tag' ); remove_action( 'wp_head', 'generate_meta_keywords_tag' ); }); add_action( 'wp_head', 'generate_meta_description_tag', 1 ); add_action( 'wp_head', 'generate_meta_keywords_tag', 1 );
This post was modified 1か月前 by Akira