wp_get_theme_error

函数
wp_get_theme_error ( $theme )
参数
  • (string) $theme Path to the theme directory relative to the themes directory.
    Required:
返回值
  • (array|false) Array of error information as it was returned by `error_get_last()`, or false if none was recorded.
定义位置
相关方法
wp_get_themewp_get_themesget_theme_rootget_theme_rootswp_kses_html_error
引入
5.2.0
弃用
-

wp_get_theme_error: 这个函数为一个给定的主题检索一个错误信息。它接受一个参数 – 主题的名称。它返回错误信息,如果没有发生错误,则返回一个空字符串。

获取一个暂停的主题的错误记录。

function wp_get_theme_error( $theme ) {
	if ( ! isset( $GLOBALS['_paused_themes'] ) ) {
		return false;
	}

	if ( ! array_key_exists( $theme, $GLOBALS['_paused_themes'] ) ) {
		return false;
	}

	return $GLOBALS['_paused_themes'][ $theme ];
}

常见问题

FAQs
查看更多 >