在press.php的第1行中,Wordpress错误意外T_VARIABLE

时间:2013-11-13 05:41:11

标签: php wordpress

自从我在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';
?>

1 个答案:

答案 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';
?>