Twenty Thirteen
主题中的所有页面都会在页面内容的顶部显示页面标题。如何从所有页面中删除它?
答案 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>-->