首页 > 代码库 > wordpress中add_action和add_filter
wordpress中add_action和add_filter
add_action( string $tag, callable $function_to_add, int $priority = 10,int $accepted_args = 1 )
官网是这么说的:在一个特定的动作上挂钩一个函数。
那么就有对应的执行这个特定动作的函数:
do_action( string $tag, $arg = ‘‘ )
在我理解他有这麽一个好处,就是把多个不同运用的函数一起执行,进行输出。
add_filter( string $tag, callable $function_to_add, int $priority = 10, int $accepted_args = 1 )
add_filter跟add_action类似,在一个特定的动作上挂钩一个方法或函数,主要的区别就是有返回值。通过官网的例子可以看出:
// Filter call. $value = apply_filters( ‘hook‘, $value, $arg2, $arg3 ); // Accepting zero/one arguments. function example_callback() { ... return ‘some value‘; } add_filter( ‘hook‘, ‘example_callback‘ ); // Where $priority is default 10, $accepted_args is default 1. // Accepting two arguments (three possible). function example_callback( $value, $arg2 ) { ... return $maybe_modified_value; } add_filter( ‘hook‘, ‘example_callback‘, 10, 2 ); // Where $priority is 10, $accepted_args is 2.
添加静态方法:
add_filter( ‘media_upload_newtab‘, array( ‘My_Class‘, ‘media_upload_callback‘ ) );
添加函数:
add_filter( ‘media_upload_newtab‘, array( $this, ‘media_upload_callback‘ ) );
传递的第二个参数也可以是一个闭包:
add_filter( ‘the_title‘, function( $title ) { return ‘<strong>‘ . $title . ‘</strong>‘; } );
与此对应的有apply_filter调用钩子上的 函数或方法
apply_filters( string $tag, mixed $value )
add_action与add_filter 主要的区别就是一个有返回值一个没有返回值。
apply_filter和do_action都是执行钩子上挂载的函数集。
wordpress中add_action和add_filter
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。