这是我认为在尝试安装主题时会在我的WordPress网站上导致致命错误的一段代码:
add_action( 'init', 'create_post_type', 0 );
我收到的错误是:
致命错误:无法在/中重新声明create_post_type()(先前在/home/content/30/4376030/html/wp-content/plugins/tsw-custom-listing/tsw-custom-listing.php:44中声明) 551行上的home / content / 30/4376030 / html / wp-content / themes / dolceclassifieds / functions.php
如何防止此错误?
答案 0 :(得分:0)
打开主题功能文件themes/dolceclassifieds/functions.php
,然后转到第551行,找到功能名称并在功能名称中添加前缀。然后在该文件中找出该动作挂钩,并插入新的函数名称。
add_action( 'init', 'insert_here_new_function_name', 0 );
希望它将解决您的问题。但是如果您不是编码人员,那么使用编码人员将非常有用。否则,如果将这些其他功能连接到其他代码,则会破坏任何其他功能。