致命错误:无法重新声明has_shortcode()(之前在/home/content/86/9216686/html/wordpress/wp-includes/shortcodes.php:153中声明)/ home / content / 86/9216686 / html /第23行的wordpress / wp-content / themes / options / framework / functions / common.php
答案 0 :(得分:1)
函数has_shortcode
是在WordPress 3.6中引入的,您可能已从早期版本更新。
现在主题正在尝试使用保留功能。含义:主题已过时,解决方案:
用
封装主题函数(wp-content / themes / options / framework / functions / common.php)if( !function_exists( 'has_shortcode' ) )
{
function has_shortcode()
{
// THE THEME CODE
}
}