尝试使用global和get\\u permalink($post->ID)访问post对象
function new_excerpt_more( $more ) {
global $post;
return \'<a class="read-more" href="\'. get_permalink($post->ID) . \'">Custom text</a>\';
}
add_filter( \'excerpt_more\', \'new_excerpt_more\' );
确保代码在您的函数中。php文件。