嘿,伙计们正试图翻译我的WP网站的最后一句话。问题是“阅读更多”将不会被翻译。我尝试使用WPML找到一个solutin,但每次我得到一个错误500或只有一个不起作用的文本输出。
/* Modify the WordPress read more link
add_filter( 'the_content_more_link', 'modify_read_more_link' );
function modify_read_more_link() {
return '... <a class="more-link" href="' . get_permalink() . '">Read More</a>';
}
//* Modify the Genesis content limit read more link
add_filter( 'get_the_content_more_link', 'matchstick_more_link' );
function matchstick_more_link() {
return '... <a class="more-link" href="' . get_permalink() . '">Read More</a>';
}
function matchstick_custom_excerpt_more( $more ) {
return '... <a class="more-link" href="' . get_permalink() . '">Read More</a>';
}
我应该插入
<?php _e( 'Read Me', 'text-domain' ); ?>
任何人都可以告诉我出错了什么因为这个Code Snipet无法正常工作