plugin development - Proper way to use apply_filters() with class functions?

I want to allow my user to override a function. It's a plugin. I believe that apply_filters() can be used for this.

I want to allow my user to override a function. It's a plugin. I believe that apply_filters() can be used for this. this can be overridden by add_filter().

I am confused about how to use it. Say if i have a class like this

class Example{
  public function hello(){
   $title = the_title_attribute();
   return $title;
  }
}

What change should I make to allow that $title to be modified? where to place the apply filter? Thanks

I want to allow my user to override a function. It's a plugin. I believe that apply_filters() can be used for this. this can be overridden by add_filter().

I am confused about how to use it. Say if i have a class like this

class Example{
  public function hello(){
   $title = the_title_attribute();
   return $title;
  }
}

What change should I make to allow that $title to be modified? where to place the apply filter? Thanks

Share Improve this question edited May 14, 2019 at 17:11 butlerblog 5,1313 gold badges28 silver badges44 bronze badges asked May 14, 2019 at 16:47 user145078user145078
Add a comment  | 

1 Answer 1

Reset to default 5

It depends on you where you want to call apply_filters().

It can be right when you defined the $title:

$title = apply_filters( 'my_hook', the_title_attribute( 'echo=0' ) ); // set echo to false
return $title;

Or in the return call:

$title = the_title_attribute( 'echo=0' ); // set echo to false
return apply_filters( 'my_hook', $title );

Then one can hook to the filter like so:

add_filter( 'my_hook', 'some_function' );

PS: As @birgire pointed, the_title_attribute() will echo output, unless the echo argument is set to false. So be sure to use the function with the proper parameters.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745493821a4630106.html

相关推荐

  • plugin development - Proper way to use apply_filters() with class functions?

    I want to allow my user to override a function. It's a plugin. I believe that apply_filters() can be used for this.

    2小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信