Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定のページのページタイトルを表示したくありません。function.phpのフィルターでこれを行うにはどうすればよいですか?
テンプレートファイル内で、page.php を開きます
探す:
<?php the_title();?>
への変更:
<?php if(is_page('Your-Page-Name')){ //dont show title }else{ the_title(); } ?>
そのため、問題のページにはタイトルが表示されませんが、他のページには他のページのタイトルが表示されます