wpseek.com
WordPress开发者和主题制作者的搜索引擎



remove_theme_mods › WordPress Function

Since2.1.0
已弃用n/a
remove_theme_mods ( 没有参数 )
定义在:
文档:

Removes theme modifications option for the active theme.



源码

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 );
}