WordPress的行为类似于函数。php不存在

时间:2012-03-12 作者:Eimantas Kasperiūnas

我在本地主机windows服务器上开发我的主题,一切正常,直到我决定将其转移到我的主机。我把它作为我之前转移过的所有wordpress网站,更改了live网站和wordpress url,但就在我激活主题时,功能中没有任何功能。php文件被使用,对于我从那里得到的每一个函数Fatal error: Call to undefined function问题出在哪里?一切都和转移是好的,因为网站的作品像它应该与二十十个主题,也内页工程太多,因为我不使用任何功能,但在frontpage那里是蒂姆拇指使用和几个自定义功能,它无法使用其中任何一个,无论它做什么,它只是看起来功能。php文件不存在。有什么想法吗?错误日志:http://pastebin.com/hdbYUjxT

以下是全部功能。php文件:http://pastebin.com/ZXFX2wV5

1 个回复
SO网友:kaiser

在本地开发时,always 在wp配置中设置以下内容。php收件人see all errors:

// DEBUG
error_reporting( E_ALL );

/** Php error log */
@ini_set( \'log_errors\',         \'On\');
@ini_set( \'display_errors\',     \'On\');

define( \'WP_DEBUG\',             true );
define( \'SAVEQUERIES\',          true );
// file: /core_root/content/debug.log
define( \'WP_DEBUG_LOG\',         true );
define( \'WP_DEBUG_DISPLAY\',     true );

结束

相关推荐

Functions file mods and CPU

将添加类似于我在下面粘贴到函数的代码。php主题文件会降低Wordpress站点的速度,还是影响CPU?(谢谢)function remove_menu_items() { global $menu; $restricted = array(__(\'Links\'), __(\'Comments\'), __(\'Media\'), __(\'Plugins\'), __(\'Tools\'), __(\'Users\')); end ($menu);&#