最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - Woocommerce related product text

programmeradmin4浏览0评论

Hi guys im currently using this in my function.php

    // Change WooCommerce "Related products" text

    add_filter('gettext', 'change_rp_text', 10, 3);
    add_filter('ngettext', 'change_rp_text', 10, 3);

    function change_rp_text($translated, $text, $domain)
    {
     if ($text === 'Related products' && $domain === 'woocommerce') {
         $translated = esc_html__('You may also like..', $domain);
     }
     return $translated;
    }

It works very well, however i want to add two dots after "You may also like", however it will only return one.. How can i achieve this?

发布评论

评论列表(0)

  1. 暂无评论