Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. add_action( 'new_hook', 'sushi_add_a_title');
  5. function sushi_add_a_title(){
  6. $title = 'hello world!';
  7. echo apply_filters('a_nice_title' , $title );
  8. }
  9.  
  10. ?>
  11.  
  12. <?php
  13. add_filter('a_nice_title', 'replace_string');
  14. function replace_string($title){
  15. $title = str_replace("hello world!", "Hi world!", $title);
  16. return $title;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement