Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class Foo {
  2.  
  3. ...constructor, etc.
  4.  
  5. function to_filter() {
  6. $output = '<div class="wrap">';
  7. $output .= $this->another_function();
  8. $output .= more html
  9.  
  10. return apply_filters( 'to_filter_name', $output );
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement