Switch language

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




remove_action [ WordPress Function ]

remove_action ( $tag, $function_to_remove, $priority = 10, $accepted_args = 1 )
Parameters:
  • (string) $tag The action hook to which the function to be removed is hooked.
  • (callback) $function_to_remove The name of the function which should be removed.
  • (int) $priority optional The priority of the function (default: 10).
  • (int) $accepted_args optional. The number of arguments the function accepts (default: 1).
Returns:
  • (boolean) Whether the function is removed.
Defined at:



Removes a function from a specified action hook.

This function removes a function attached to a specified action hook. This method can be used to remove default functions attached to a specific filter hook and possibly replace them with a substitute.

Source


<?php
function remove_action($tag$function_to_remove$priority 10$accepted_args 1) {
    return 
remove_filter($tag$function_to_remove$priority$accepted_args);
}
?>

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