wordpress主题开发第35课:在摘要后面插入“阅读更多”

在摘要后面插入“阅读更多”

实现方法是在functions.php中插入下面这段代码

/**
* 将摘要的”[…]” 替换为 “阅读更多”
*
*/
function replace_excerpt_more( $link ) {
if ( is_admin() ) {
return $link;
}
$link = sprintf(
‘<p class=”link-more”><a href=”%1$s” class=”more-link “>%2$s</a></p>’,
esc_url( get_permalink( get_the_ID() ) ),
‘阅读更多’
);
return ‘ &hellip; ‘ . $link;
}
add_filter( ‘excerpt_more’, ‘replace_excerpt_more’ );

效果预览:

wordpress主题开发第35课:在摘要后面插入“阅读更多”插图

‘ &hellip; ‘输出的内容是 “…”,不希望输出 … 的,可以删除

© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容