Q.カスタム投稿「お知らせ」「制作実績」の一覧(アーカイブページ)のtitleタグとmetaタグdescriptionの内容を任意のものに変更したいです。
A.下記の方法でカスタマイズしてください。
titleタグを変更する
編集するファイル: functions/seo.php
編集する箇所: 131行目付近
} elseif ( is_year() ) { return sprintf( __( 'Archive for %s', 'tcd-w' ), get_the_time( __( 'Y', 'tcd-w') ) );
↓ 記述を追加する
} elseif ( is_year() ) { return sprintf( __( 'Archive for %s', 'tcd-w' ), get_the_time( __( 'Y', 'tcd-w') ) ); } elseif ( is_post_type_archive( 'news' ) ) { return sprintf( __( 'お知らせアーカイブのtitle' ) ); } elseif ( is_post_type_archive( 'work' ) ) { return sprintf( __( '制作実績アーカイブのtitle' ) );
metaタグdescriptionを変更する
編集するファイル: functions/seo.php
編集する箇所: 202行目付近
} elseif ( is_year() ) { return sprintf( __( 'Archive for %s', 'tcd-w' ), get_the_time( __( 'Y', 'tcd-w' ) ) );
↓ 記述を追加する
} elseif ( is_year() ) { return sprintf( __( 'Archive for %s', 'tcd-w' ), get_the_time( __( 'Y', 'tcd-w' ) ) ); } elseif ( is_post_type_archive( 'news' ) ) { return sprintf( __( 'お知らせアーカイブのdescription' ) ); } elseif ( is_post_type_archive( 'work' ) ) { return sprintf( __( '制作実績アーカイブのdescription' ) );
この記事は役に立ちましたか?
もし参考になりましたら、下のボタンで教えてください。
今後の記事作成の参考とさせて頂きます!