Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




remove_theme_mod [ WordPress Function ]

remove_theme_mod ( $name )
Parameters:
  • (string) $name Theme modification name.
Returns:
  • (null)
Defined at:



Remove theme modification name from current theme list.

If removing the name also removes all elements, then the entire option will be removed.

Source


<?php
function remove_theme_mod$name ) {
    
$mods get_theme_mods();

    if ( ! isset( 
$mods$name ] ) )
        return;

    unset( 
$mods$name ] );

    if ( empty( 
$mods ) )
        return 
remove_theme_mods();

    
$theme get_option'stylesheet' );
    
update_option"theme_mods_$theme"$mods );
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics