Php 在wordpress中更改多语言阅读更多内容

Php 在wordpress中更改多语言阅读更多内容,php,function,wordpress,Php,Function,Wordpress,您好,我有问题如何解决阅读更多德语的变化。 我使用在functions.php中更改readmore function modify_read_more_link() { return '<a class="image-hover hvr-shutter-out-vertical button" href="' . get_permalink() . '">PROČITAJ</a>'; } add_filter( 'the_content_more_link',

您好,我有问题如何解决阅读更多德语的变化。 我使用在functions.php中更改readmore

function modify_read_more_link() {
    return '<a class="image-hover hvr-shutter-out-vertical button" href="' . get_permalink() . '">PROČITAJ</a>';
}

add_filter( 'the_content_more_link', 'modify_read_more_link' );
函数modify\u read\u more\u link(){
返回“”;
}
添加过滤器(“内容更多链接”、“修改阅读更多链接”);

当我使用wpml插件将PROČITAJ翻译成MEHR时,如何改变这一点。

您必须尝试类似的方法

if ( ICL_LANGUAGE_CODE=='fr' ) { echo 'Bonjour'; }
elseif ( ICL_LANGUAGE_CODE=='en' ) { echo 'Hello'; }