2014-10-12 50 views
1

我使用WordPress 4.0,我得到我的日誌以下PHP警告:call_user_func_array()錯誤

PHP的警告:call_user_func_array()預計參數1是一個有效的回調,功能 'et_add_viewport_meta'未發現或/var/www/vhosts/mydomain.com/httpdocs/blog/wp-includes/plugin.php無效的函數名上線505

我查了plugin.php線505,發現這line:

call_user_func_array($ the _ ['function'],array_slice($ args,0,(int)$ the _ ['accepted_args']));

我該如何解決這個問題,可能是什麼問題?

回答

1

檢查您的wordpress functions.php目錄下的〜/ wp-content/themes/YOURTHEMENAME/

應該有這個函數定義:

function et_add_viewport_meta(){ 
    echo '<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />'; 
}