remove_theme_mod() WP 1.0
Remove theme modification name from current theme list.
If removing the name also removes all elements, then the entire option will be removed.
1 time = 0.001562s = very slow | 50000 times = 2.79s = fast
No Hooks.
Return
Null. Nothing.
Usage
remove_theme_mod( $name );
- $name(string) (required)
- Theme modification name.
Changelog
Since 2.1.0 | Introduced. |
Code of remove_theme_mod() remove theme mod WP 5.6
function remove_theme_mod( $name ) {
$mods = get_theme_mods();
if ( ! isset( $mods[ $name ] ) ) {
return;
}
unset( $mods[ $name ] );
if ( empty( $mods ) ) {
remove_theme_mods();
return;
}
$theme = get_option( 'stylesheet' );
update_option( "theme_mods_$theme", $mods );
}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()