WordPress 主题测试时有一条是测试文章无标题时也必须显示一条指向详细页面的链接, This Post has no Post Title, but must still display a link to the single-page Post view. 否则提交主题时会被驳回。我们可以利用add_filter方法来解决这个问题。
打开主题文件夹下的 functions.php 文件,增加下面的代码即可。
/**
* Where the post has no post title, but must still display a link to the single-page post view.
*/
add_filter(‘the_title’, ‘renniaofei_title’);
function renniaofei_title($title) {
if ($title == ”) {
return ‘Untitled’;
} else {
return $title;
}
}
当文章无标题时,会以 Untitled 来代替。