自从我在functions.php
中编写了一个函数以来,我一直面临这个错误。我甚至删除了它并将我的备份文件从FTP上传到服务器上。
它仍然显示相同的错误。 WordPress论坛上的人们不知道究竟需要做什么。
请在我的客户实时网站上提供帮助。
Parse error: syntax error, unexpected T_VARIABLE in /home/content/90/10424790/html/waytofabulous/wp-content/themes/custom/functions.php on line 1
前10行代码:
<?php
if ( ! isset( $content_width ) )
$content_width = 604;
require get_template_directory() . '/inc/custom-header.php';
if ( version_compare( $GLOBALS['wp_version'], '3.6-alpha', '<' ) )
require get_template_directory() . '/inc/back-compat.php';
?>
答案 0 :(得分:1)
请删除<?php
代码前的空格
if ( ! isset( $content_width ) )
$content_width = 604;
require get_template_directory() . '/inc/custom-header.php';
if ( version_compare( $GLOBALS['wp_version'], '3.6-alpha', '<' ) )
require get_template_directory() . '/inc/back-compat.php';
?>