致命错误:调用未定义的函数themify_build_write_panels()

时间:2013-06-20 07:42:53

标签: php wordpress themes

当我尝试访问我的网站时,我收到错误(WordPress上的网站) 致命错误:在第931行的/ home / ash / public_html / wp-content / themes / metro / theme- functions.php中调用未定义的函数themify_build_write_panels()

我的第931行是=>

themify_build_write_panels( apply_filters(
'themify_theme_meta_boxes' , 

请帮助我!!

谢谢:)

1 个答案:

答案 0 :(得分:0)

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

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

在你的functions.php

中找到这个功能
function themify_build_write_panels(){
    //statements
    //statements       
}

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

错误是透明的,你没有定义你的功能。