Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_filter('the_content', 'my_funct');
  2.  
  3. function my_funct($content) {
  4. return $content . '<a href="www.mysite.com">Link</a>';
  5. }
  6.  
  7. add_filter('the_content', 'my_funct');
  8.  
  9. function my_funct($content) {
  10. echo $content . '<a href="www.mysite.com">Link</a>';
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement