Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function sample_function ( $content ) {
  2.  
  3. $content .= 'test';
  4.  
  5. return $content;
  6.  
  7. }
  8.  
  9.  
  10. add_filter(
  11. 'the_content', /*the function tag/id for the WordPress Plugin API function*/
  12.  
  13. 'sample_function', /*callback function that you are going to run the filter through*/
  14. );
  15.  
  16. /* SUMMARY = this takes the post content and appends test to it. i.e filters the content changin it to a new form. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement