Wordpress Parse错误:语法错误,第169行意外T_STRING

时间:2017-02-26 17:06:46

标签: php wordpress syntax-error

当我尝试在Wordpress中更新我的function.php时收到以下错误消息:

  

解析错误:第169行/home3/menteveg/public_html/connectedhorizo​​nsco/wp-content/themes/wpvoyager/functions.php中的语法错误,意外的'Bar'(T_STRING),期待','或')'< / p>

我花了很多年的时间检查代码并检查了论坛上其他人提出的其他“语法错误意外(T_STRING)”问题/答案,但没有找到任何内容,任何人都有任何想法?提前致谢 !这是第157到183行的代码:

    register_sidebar(array(
        'id' => 'footer1',
        'name' => esc_html__('Footer 1st Column', 'wpvoyager' ),
        'description' => esc_html__('1st column for widgets in Footer', 'wpvoyager' ),
        'before_widget' => '<aside id="%1$s" class="footer-widget %2$s">',
        'after_widget' => '</aside>',
        'before_title'  => '<h4>',
        'after_title'   => '</h4>',
        ));
    register_sidebar(array(
        'id' => 'footer2',
        'name' => esc_html__('Footer 2nd Column', 'wpvoyager' ),
        'description' => esc_html__('2nd column for widgets in Footer', 'wpvoyager' ),
        'before_widget' => '<aside id="%1$s" class="footer-widget %2$s">',
        'after_widget' => '</aside>',
        'before_title'  => '<h4>',
        'after_title'   => '</h4>',
        ));

0 个答案:

没有答案