如何创建3个点和括号摘录并链接到博客文章(wordpress)

时间:2017-10-25 09:17:12

标签: php wordpress

我有一个WordPress网站,我刚刚从另一个网站开发者那里,有以下关于博客文章的摘录:[...]

如何为这些括号和点添加功能以链接到博客文章?

1 个答案:

答案 0 :(得分:0)

使用此代码:

function new_excerpt_more($more) {
       global $post;
    return '<a class="moretag" href="'. get_permalink($post->ID) . '"> [...]</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');