首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >WordPress主题开发:摘录问题

WordPress主题开发:摘录问题
EN

Stack Overflow用户
提问于 2013-12-16 12:06:30
回答 1查看 62关注 0票数 0

有人可以帮我修改this theme的摘录吗?它显示了主页上的所有帖子,如果我切换到the_excerpt(),它会显示一个未链接的继续阅读文本。谢谢。

EN

回答 1

Stack Overflow用户

发布于 2013-12-16 12:25:53

将此代码粘贴到该主题的functions.php文件中。它将在摘录中添加一个链接。

代码语言:javascript
复制
// Replaces the excerpt "more" text by a link
function new_excerpt_more($more) {
       global $post;
    return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Read the full article...</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/20603296

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档