我只是遇到了一些问题。我是Wordpress开发的新手。我知道的不多,而且我的功能也搞砸了。php文件。事情是这样发生的:我从This site. 这本应针对特定类别的所有帖子,并更改其模板。它应该工作得很好,但我没有将代码粘贴到函数下面,而是意外地将其粘贴到了一些代码行上。。所以我得到了一个解析文件错误,我不得不使用FTP访问它。我删除了之前复制的所有代码,留下了不完整的函数。php文件。我不知道现在该怎么办。谁能帮帮我吗?下面是留在函数中的代码。php:
<?php
// Exit if accessed directly
if ( !defined(\'ABSPATH\')) exit;
/**
*
* WARNING: Please do not edit this file in any way
*
* load the theme function files
*/
require ( get_template_directory() . \'/core/includes/functions.php\' );
require ( get_template_directory() . \'/core/includes/theme-options.php\' );
require ( get_template_directory() . \'/core/includes/post-custom-meta.php\' );
require ( get_template_directory() . \'/core/includes/tha-theme-hooks.php\' );
?>
上面有一个php起始标记,但由于某种原因,我无法在这里显示它。。。我还试图在代码下面添加一个结束php标记,但这并没有解决问题。