[CP5設定]-[CP5設定] > [キャスト表示名]で設定したテキストは、
・管理画面のメニュー名
・女性一覧ページの見出し
・女性プロフィールページの見出し
に反映されます。
この中で、女性プロフィールページの見出しのみを、別のテキストに変更したい場合は、以下のように修正してください。
header.php 129行目
<div class="page-header"> <?php if ( is_page() ) { the_title( '<h2 class="page-title animated"><span class="title-name">', '</span></h2>' ); } elseif ( is_archive() || is_tax() ) { the_archive_title( '<h2 class="page-title animated"><span class="title-name">', '</span></h2>' ); } elseif ( is_single() ) { ?> <h2 class="page-title animated"><span class="title-name"><?php echo get_post_type_object( get_post_type() )->labels->singular_name; ?></span></h2> <?php } ?> </div>
↓
<div class="page-header"> <?php if ( is_page() ) { the_title( '<h2 class="page-title animated"><span class="title-name">', '</span></h2>' ); } elseif ( is_archive() || is_tax() ) { the_archive_title( '<h2 class="page-title animated"><span class="title-name">', '</span></h2>' ); } elseif ( is_singular('cast') ) { ?> <h2 class="page-title animated"><span class="title-name">プロフィール</span></h2> <?php } elseif ( is_single() ) { ?> <h2 class="page-title animated"><span class="title-name"><?php echo get_post_type_object( get_post_type() )->labels->singular_name; ?></span></h2> <?php } </div>