标签: wordpress filter page-title
我不想显示特定页面的页面标题。怎样才能在function.php中使用过滤器?
答案 0 :(得分:2)
,打开page.php
找到:
<?php the_title();?>
更改为:
<?php if(is_page('Your-Page-Name')){ //dont show title }else{ the_title(); } ?>
所以在相关页面上,将不会显示标题 但在其他页面上将显示其他页面标题