Guest User

Untitled

a guest
Dec 14th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $original_value = 'foo';
  2. $filtered_value = apply_filters( 'wpd_filter_function', $original_value );
  3.  
  4. function wpse203948_header_cart(){
  5. echo 'something';
  6. }
  7. add_action( 'wpse203948_header_cart', 'wpse203948_header_cart' );
  8.  
  9. // applying it
  10. do_action( 'wpse203948_header_cart' );
Add Comment
Please, Sign In to add comment