Switch language

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




register_deactivation_hook [ WordPress Function ]

register_deactivation_hook ( $file, $function )
Parameters:
  • (string) $file The filename of the plugin including the path.
  • (callback) $function the function hooked to the 'activate_PLUGIN' action.
Defined at:



Set the deactivation hook for a plugin.

When a plugin is deactivated, the action 'deactivate_PLUGINNAME' hook is deactivated. In the name of this hook, PLUGINNAME is replaced with the name of the plugin, including the optional subdirectory. For example, when the plugin is located in wp-content/plugin/sampleplugin/sample.php, then the name of this hook will become 'activate_sampleplugin/sample.php'.

When the plugin consists of only one file and is (as by default) located at wp-content/plugin/sample.php the name of this hook will be 'activate_sample.php'.

Source


<?php
function register_deactivation_hook($file$function) {
    
$file plugin_basename($file);
    
add_action('deactivate_' $file$function);
}
?>

Examples [ wp-snippets.com ]

Google Arama Sonuçlarý

Dahasý ...

0 User Note(s)

Henüz yok. Ýlk sen ol!

Yeni Ekle ...



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