我想显示:内容限制应为0,并且阅读更多链接也会出现在Genesis中。这是我的代码:
add_filter ( 'get_the_content_more_link', 'custom_read_more_link' );
function custom_read_more_link() {
return '... <a class="more-link" href="' . get_permalink () . '">Read More</a>';
}
如果有人知道答案,请帮忙。提前谢谢。
答案 0 :(得分:0)
转到信息中心&gt; 创世纪&gt; 内容存档并将显示选项设置为条目摘录
将以下代码复制到functions.php
//* Modify the length of post excerpts
add_filter( 'excerpt_length', 'sp_excerpt_length' );
function sp_excerpt_length( $length ) {
return 0; // pull first 0 words
}