Live Host上的Wordpress语法错误,在本地工作正常

时间:2017-11-27 10:30:48

标签: php wordpress syntax host

过去几天我一直在我的本地主机上做一个wordpress项目。 完成后,我尝试将其上传到我的直播主机上。 但是当安装完成时,它显示语法错误,说" 解析错误:语法错误,意外' ['在...... "

代码如下:

function Consulin_header_style() {  
if (Consulin_meta('enable_custom_header_style') == 1):
    $images = Consulin_decode(Consulin_meta( 'header_image'));
    $header_images = '.page-title { background-image: url('. wp_get_attachment_image_src($images[0],'flat-page-title')[0].');}';
else:       
    if ( get_header_image() != "" ) {
        $header_images = '.page-title { background-image: url('. get_header_image().');}';  
    } else {
        $header_images = '.page-title { background-image: url('.CONSULIN_LINK.'images/page-title.jpg) ; }';
    }
endif;
wp_add_inline_style( 'Consulin-style', $header_images );
}

代码的第4行代表" $ header_images = ... "是问题。 我对编程知之甚少,所以我在这里感谢一些帮助。

P.S:它在localhost上完全正常。

0 个答案:

没有答案