Q.ランキング記事内のタイトルを変更したい
トップページのランキングタイトルとランキング記事内のタイトルは、同一のものが表示される仕様ですが、ランキング記事内のタイトルを下記のようにPHPファイルに記載することで異なるタイトルを表示させることが出来ます。
ランキング記事とは(デモサイト参照)
A.下記のphpファイルの該当箇所を編集します
編集するファイル:single-ranking_post.php
編集する箇所:
<?php if ( is_array ( $myItemName )) { ?> |
<h2 class = "post-title" ><?php the_title(); ?></h2> |
<h1 class = "post-title" ><?php the_title(); ?></h1> |
<?php if ( is_array ( $myItemName )) { ?> |
<h2 class = "post-title" >任意の文字</h2> |
<h1 class = "post-title" >任意の文字</h1> |
ランキング2(single-ranking_post2.php)、3(single-ranking_post3.php)についても同様の箇所を編集することで変更可能です。