Advertisement
srikat

Untitled

Jan 28th, 2015
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. //* Display Genesis Sandbox Featured Content widget's Post meta below the title
  2. add_action( 'gsfc_before_post_content', array( 'GS_Featured_Content', 'do_post_meta' ), 15 );
  3.  
  4. add_action( 'gsfc_post_content', 'sk_remove_gsfc_post_meta' );
  5. /**
  6.  * Remove Genesis Sandbox Featured Content widget's Post meta from its default location
  7.  *
  8.  * @author Sridhar Katakam
  9.  * @link   http://sridharkatakam.com/
  10.  */
  11. function sk_remove_gsfc_post_meta() {
  12.    
  13.     remove_action( 'gsfc_after_post_content', array( 'GS_Featured_Content', 'do_post_meta' ) );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement