wp_skip_paused_themes

函数
wp_skip_paused_themes ( $themes )
参数
  • (string[]) $themes Array of absolute theme directory paths.
    Required:
返回值
  • (string[]) Filtered array of absolute paths to themes, without any paused themes.
定义位置
相关方法
wp_paused_themeswp_skip_paused_pluginswp_using_themeswp_get_themeswp_update_themes
引入
5.2.0
弃用
-

wp_skip_paused_themes: 这个函数用来检查在处理一个WordPress动作或过滤器时是否应该跳过暂停的主题。如果这个函数返回true,暂停的主题将被跳过。

过滤一个给定的主题列表,从其中删除任何暂停的主题。

function wp_skip_paused_themes( array $themes ) {
	$paused_themes = wp_paused_themes()->get_all();

	if ( empty( $paused_themes ) ) {
		return $themes;
	}

	foreach ( $themes as $index => $theme ) {
		$theme = basename( $theme );

		if ( array_key_exists( $theme, $paused_themes ) ) {
			unset( $themes[ $index ] );

			// Store list of paused themes for displaying an admin notice.
			$GLOBALS['_paused_themes'][ $theme ] = $paused_themes[ $theme ];
		}
	}

	return $themes;
}

常见问题

FAQs
查看更多 >