码迷,mamicode.com
首页 > 其他好文 > 详细

wordpress中add_action和add_filter

时间:2017-04-21 00:38:38      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:hook   value   nts   不同   arguments   pos   bottom   filter   otto   

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

标签:hook   value   nts   不同   arguments   pos   bottom   filter   otto   

原文地址:http://www.cnblogs.com/webph/p/6741218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!