0

I am getting an error when I try to access my site (site on WordPress) Fatal error: Call to undefined function themify_build_write_panels() in /home/ash/public_html/wp-content/themes/metro/theme- functions.php on line 931

My line 931 is =>

themify_build_write_panels( apply_filters(
'themify_theme_meta_boxes' , 

please help me!!

Thanks :)

4

1 回答 1

0

发生此错误是因为您没有在 functions.php 中定义此函数

检查您是否正确定义了此功能。

在你的functions.php中找到这个函数

function themify_build_write_panels(){
    //statements
    //statements       
}

您是对的,您是 WordPress 的新手,但作为开发人员,您应该了解编程以及在编程中如何使用函数以及如何定义它们。

错误是透明的,您没有定义您的函数。

于 2013-06-20T07:49:48.657 回答