我正在使用blogstart wordpress主题,我想更改;阅读更多“;文本转换为与我使用的语言类似的内容。我该怎么做?我已经尝试将下面的代码粘贴到函数中。php。
Replaces the excerpt "Read More" text by a link
function modify_read_more_link() {
return \'<a class="read-article" href="\' . get_permalink() . \'">Your Read
More Link Text</a>\';
}
add_filter( \'the_content_more_link\', \'modify_read_more_link\' );
// Replaces the excerpt "Read More" text by a link
function new_excerpt_more($more) {
global $post;
return \'<a class="read-article" href="\'. get_permalink($post->ID) . \'">
Read the full article...</a>\';
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');
有人能帮我吗?非常感谢。