【问题标题】:Change worspress read more button text更改 wordpress 阅读更多按钮文本
【发布时间】:2021-12-29 06:33:04
【问题描述】:

阅读更多按钮有问题。

这是我网站的链接:http://kamilawosinska-skillspring.com/index.php/publikacje/

您可以看到所有网站都是波兰语,但阅读更多按钮是英文

我无法改变它。我尝试了 Loco 翻译,但它不起作用。

您知道如何更改阅读更多按钮文本吗?

我使用 Bstone 主题。

【问题讨论】:

    标签: javascript jquery wordpress


    【解决方案1】:
    add_action( 'wp_head', 'change_read_more_to_something' );
    function change_read_more_to_something() {
        add_filter( 'gettext', 'change_read_more_text');
    }
    
    function change_read_more_text( $text ) {
     
        $text = str_ireplace( 'Read More',  'YOUR TEXT',  $text );
        return $text;
    }
    

    将此代码添加到您的functions.php

    这应该可以,但请记住这将改变所有Read More

    【讨论】:

    • 您好,您的主题中似乎已经有了选项。代码从设置中获取阅读更多文本prntscr.com/2002z0u
    • 你知道这个选项在哪里可以找到吗?找了很久没有结果。
    • 看起来这个设置在我的主题的专业版中。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-06-22
    • 2021-08-22
    • 2012-11-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多