Advertisement
srikat

Untitled

May 9th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_action( 'genesis_entry_header', 'sk_remove_images_features' );
  2. function sk_remove_images_features() {
  3.     if ( in_array( 'feature', get_post_class() ) ) {
  4.         remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement