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

warnings - Change ICL_LANGUAGE_CODE for WPML

programmeradmin0浏览0评论

I got an error:

PHP Warning: Use of undefined constant ICL_LANGUAGE_CODE - assumed 'ICL_LANGUAGE_CODE' (this will throw an Error in a future version of PHP) in <path/functions.php on line 19

So I want to change ICL_LANGUAGE_CODE to wpml_current_language filter. But I can't make it.

I want to change this:

add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);

function change_existing_currency_symbol( $currency_symbol, $currency ) {
    switch( $currency ) {
        case 'AED':         
        if(ICL_LANGUAGE_CODE=='ar'){        
        $currency_symbol = 'د.إ'; 
        }else{
                 $currency_symbol = 'AED'; 
            } 
        break;          
    }
    return $currency_symbol;
}
发布评论

评论列表(0)

  1. 暂无评论