看起来你在说the_excerpt
. 在您查找时,以下代码将起作用:
function custom_excerpt($more) {
global $post;
return \'<a class="moretag" target="_blank" href="\'. get_permalink($post->ID) . \'"> Continue reading...</a>\';
}
add_filter(\'excerpt_more\', \'custom_excerpt\');
你需要把它放在你的
functions.php
文件