remove_theme_mods()

remove_theme_mods() 删除当前主题的主题修改选项。Remove theme modifica…

remove_theme_mods()

删除当前主题的主题修改选项。
Remove theme modifications option for current theme.

目录锚点:#返回#源码


返回(Return)

无返回值


源码(Source)

/**
 * Remove theme modifications option for current theme.
 *
 * @since 2.1.0
 */
function remove_theme_mods() {
	delete_option( 'theme_mods_' . get_option( 'stylesheet' ) );

	// Old style.
	$theme_name = get_option( 'current_theme' );
	if ( false === $theme_name )
		$theme_name = wp_get_theme()->get('Name');
	delete_option( 'mods_' . $theme_name );
}
更新版本 源码位置 使用 被使用
2.1.0 wp-includes/theme.php:1012 1 function 4
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册