首页 文章

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

提问于
浏览
0

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

我的第931行=>

themify_build_write_panels( apply_filters(
'themify_theme_meta_boxes' ,

请帮我!!

谢谢 :)

1 回答

  • 0

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

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

    在functions.php中找到此函数

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

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

    错误是透明的,您没有定义您的功能 .

相关问题