Guest User

Untitled

a guest
Jul 15th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. if (is_feed()) {
  2. function feedAppender() {
  3. global $post;
  4.  
  5. $content = get_the_content(); // the actual content of the post
  6. $appendedContent = "test"; // whatever you want to append to the post
  7.  
  8. $content = $content . $appendedContent; // Da appendizer !
  9. return $content; // Ofcourse return it, else you'll get a blank !
  10. }
  11.  
  12. add_filter('the_content','feedAppender'); // Make this happen when the_content() is being called
  13. }
Add Comment
Please, Sign In to add comment