如何删除静态主页中的页面名称。我试过这段代码。但没有运气
.entry-header {
display: none;
}
我正在使用美德wordpress主题。
...谢谢
答案 0 :(得分:1)
您需要为主页创建单独的页面模板或编辑默认页面模板(主题文件夹中的page.php)并删除它:
<?php the_title(); ?>
答案 1 :(得分:0)
我想你错过了这个:
.home.entry-header {
display: none;
}
注意:在.home和.entry-header之间添加空格就可以了。 点击此处https://wordpress.org/support/topic/how-to-hide-page-title-on-static-homepage-esplanade-theme
答案 2 :(得分:0)
在header.php
中添加function! s:removeTrailingSpacesFromHunks()
let hunks = GitGutterGetHunks()
for hunk in hunks
let cmd = ':' . hunk[2] . ',' . (hunk[2] + hunk[3] - 1) . 's/\s\+$//e'
"debug: display command
echo cmd
"run command
execute cmd
endfor
endfunction
command! FixMySpaces call <SID>removeTrailingSpacesFromHunks()