如何删除二十三主题中的页面标题?

时间:2016-07-03 17:36:26

标签: wordpress wordpress-theming

Twenty Thirteen主题中的所有页面都会在页面内容的顶部显示页面标题。如何从所有页面中删除它?

2 个答案:

答案 0 :(得分:1)

您可以在主题样式表中添加css

.page .entry-title {
       display:none;
}

答案 1 :(得分:0)

在文本编辑器中打开wp-content/themes/twentythirteen/page.php并替换以下行:

<h1 class="entry-title"><?php the_title(); ?></h1>

使用:

<!--<h1 class="entry-title"><?php the_title(); ?></h1>-->