解析错误-WordPress

时间:2018-08-27 08:32:18

标签: php wordpress

我从Themeforest购买了Aurora wordpress主题。 当我尝试安装它时,在第361行的functions.php文件中解析了错误:意外的':'。

Functions.php第361行

$customizer_template_setting = get_theme_mod('aurora_post_layout') ?: 'default';

我该如何解决?

1 个答案:

答案 0 :(得分:3)

这是缩短的三元语法,仅在PHP 5.3和更高版本中可用。 您应该检查PHP版本(以防万一,建议!)。

该语法等效于: $customizer_template_setting = get_theme_mod('aurora_post_layout') ? get_theme_mod('aurora_post_layout') : 'default';

如果无法更新PHP版本,则极端的解决方案是替换该行。