fauzanjeg

Add Code or Text in Article

Jan 7th, 2021 (edited)
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. /* Add Code or Text in Article*/
  2. add_filter('the_content', 'add_my_content');
  3.  
  4. function add_my_content($content) {
  5.     $first = 'FIRST TEXT OR CODE HERE';
  6.     $last = 'LAST TEXT OR CODE HERE';
  7.  
  8.     if (is_single()) {
  9.         $content = $first.$content.$last;
  10.     }
  11.    
  12.     return $content;
  13. }
Add Comment
Please, Sign In to add comment