remove_theme_mods() WP 1.0
Remove theme modifications option for current theme.
Works based on: delete_option()
Basis of: remove_theme_mod()
1 time = 0.001967s = very slow | 50000 times = 17.67s = slow
No Hooks.
Return
Null. Nothing.
Usage
remove_theme_mods();
Changelog
Since 2.1.0 | Introduced. |
Code of remove_theme_mods() remove theme mods WP 5.6
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 );
}Related Functions
From tag: Theme Modification API (theme mods options settings)
More from category: Other Theme Functions
- add_theme_support()
- bloginfo()
- body_class()
- current_theme_supports()
- get_custom_header_markup()
- get_custom_logo()
- get_header_image()
- get_header_image_tag()
- get_header_textcolor()
- get_header_video_url()
- get_page_templates()
- get_post_class()
- get_query_template()
- get_stylesheet()
- get_template()
- get_theme_root()
- has_custom_logo()
- has_header_image()
- has_header_video()
- is_child_theme()
- is_header_video_active()
- is_multi_author()
- post_class()
- register_nav_menu()
- register_nav_menus()
- register_theme_directory()
- remove_theme_support()
- search_theme_directories()
- single_month_title()
- the_custom_header_markup()
- the_custom_logo()
- the_header_video_url()