我的“阅读更多”按钮链接到当前页面,而不是它应该链接到的摘录页面。这是我在函数中的函数。php文件:
function new_excerpt_more($more) {
global $post;
return \' <a href="\'. get_permalink($post->ID) . \'"> ...Read More</a>\';
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');
这发生在wp\\U list\\u页面的自定义walker中显示的摘录中。