勉強したことのメモ

Webエンジニア / プログラマが勉強したことのメモ。

WordPressで自動でmetaタグのkeywordsとdescriptionを表示

   2024/05/22  WordPress

metaタグのkeywordsとdescriptionにて、基本的にはAll in One SEOとかで手動で設定していくべきなんだろうけど、記事数勝負のコンテンツとか自動生成系のコンテンツだとどうにもならないので、自動で表示する方法をメモ。

 

ソースコード

PC側テーマのヘッダー部分に下記ソースを記述。

<!--description&keywords-->
<meta name="description" content="<?php
if(is_home()){ ?>トップページに表示したいdescriptionを書く<?php }
elseif (is_single()){
$content_summary = strip_tags($post->post_content);
$content_summary = ereg_replace("(\r\n|\r|\n)", "", $content_summary);
$content_summary = mb_substr($content_summary, 0, 60). "...";
$content_summary=strip_tags($content_summary);
echo $content_summary; }
else { ?><?php bloginfo('description'); ?><?php } ?>">

<meta name="keywords" content="<?php
if(is_home()) { ?>トップページに設定したいキーワード,キーワード①,キーワード②<?php }
elseif (is_single()){ ?><?php $posttags = get_the_tags();if ($posttags) {foreach($posttags as $tag) {echo $tag->name . ','; }} ?><?php the_title(); ?><?php }
else {?>デフォルトのキーワード①,デフォルトのキーワード②<?php } ?>">
<!--description&keywords-->

あとは必要に応じて以下で修正する。

$content_summary = ereg_replace("\"", "", $content_summary);

 

参考サイト

http://on-ze.com/archives/817

 - WordPress

  関連記事

WordPressで翌日以降に編集した記事のみ最終更新日を表示する方法

WordPressで翌日以降に編集した記事のみ最終更新日を表示させたい。逆に言う ...

WordPressでカスタムフィールドとCSVファイル投稿する方法

WordPressでカスタムフィールド設定している環境に、CSVファイルアップロ ...

WordPressにて指定したユーザでログイン中の場合のみ表記を変更する方法

WordPressを用いたサイトを開発中の際に指定したユーザでログイン中の場合に ...

WordPressにて記事内で動画(mp4)ファイルの再生する方法

WordPressでyoutube等の動画サイトの埋め込みタグではなく、mp4フ ...

WordPressでスケジュール実行される日時を調べる方法

WordPressであるシステムを実装し、その際に毎日1回スケジュール実行(WP ...