2014-06-12 89 views
0

我得到這個錯誤:解析錯誤:語法錯誤。意外 '{' - 我不知道什麼是錯

Parse error: syntax error, unexpected '{' in /home/u696221601/public_html/wp-content/themes/oblivion/themeOptions/functions.php on line 3 

在這條線:

<?php 
phpif (!function_exists('optionsframework_init')) 
{ 
    /*-----------------------------------------------------------------------------------*/  /* Options Framework Theme/*-----------------------------------------------------------------------------------*/  /* Set the file path based on whether the Options Framework Theme is a parent theme or child theme */ 

    if (get_stylesheet_directory() == get_template_directory()) 
    { 

回答

5

嘗試改變這種

phpif (!function_exists('optionsframework_init')) 
{ 

if (!function_exists('optionsframework_init')) 
{ 
0

試試這個

if (!function_exists('optionsframework_init')) 
{ 

    if (get_stylesheet_directory() == get_template_directory()) 
    { 
     //do somting  
    } 
} 
相關問題