Advertisement
marstheme

Untitled

Jan 15th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. if( ! function_exists( 'videotube_child_author_loop_before' ) ){
  2.    
  3.     /**
  4.      * @param html $input
  5.      * @return html
  6.      */
  7.    
  8.     function videotube_child_author_loop_before( $input ) {
  9.        
  10.         // Turn on buffering
  11.         ob_start();
  12.         ?>
  13.             <!-- HTML tag goes here -->
  14.        
  15.            
  16.        
  17.         <?php
  18.         $input  =    ob_get_clean() . $input;
  19.        
  20.         return $input;
  21.     }
  22.    
  23.     add_filter( 'videotube_author_loop_before' , 'videotube_child_author_loop_before', 20, 1 );
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement