"read more"是个好东西,方便你把长文章截断,保持主页的整洁。但问题是你无法替换"read more"的文字。下面告诉你替换的方法。
老样子,打开function.php,插入以下代码:
<?php
$custom_more = "Continue reading this post"; //替换后的文字
add_filter( 'the_content_more_link', 'my_more_link', 10, 2 );function my_more_link( $more_link, $more_link_text ) {
return str_replace( $more_link_text, $custom_more, $more_link );
}
?>
大功告成!
分类:新闻资讯