Genesis Framework

Genesis Framework: 如何修改read more链接文字

Genesis框架里几乎该点啥都涉及到代码,想改个Read More链接也不例外。

如果你使用WordPress的more标签分割文章,想要修改read more链接,下面是你需要的代码

/** Modify the WordPress read more link */
add_filter('the_content_more_link', 'custom_read_more_link');

function custom_read_more_link() {
    return '<a class="more-link" href="' . get_permalink() . '">[Continue Reading]</a>';

如果在Theme Settings的Content Archives部分选择了Display post content并且Limit content to 多少个字符,用下面的代码可以更改read more link

/** Modify the Genesis content limit read more link */
add_filter( 'get_the_content_more_link', 'custom_read_more_link' );
function custom_read_more_link() {
	return '... [Continue Reading]';
}

如果选择Display post excerpt,可以用下面的代码限制摘要的字数

/** Modify the Genesis content limit read more link */
add_filter( 'get_the_content_more_link', 'custom_read_more_link' );
function custom_read_more_link() {
    return '... <a class="more-link" href="' . get_permalink() . '">[Continue Reading]</a>';
}