我有一个WordPress网站,我刚刚从另一个网站开发者那里,有以下关于博客文章的摘录:[...]
如何为这些括号和点添加功能以链接到博客文章?
答案 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');