Advertisement
srikat

Untitled

Jun 3rd, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. add_action( 'genesis_entry_content', 'fn_show_featured_image_pages', 9 );
  2. function fn_show_featured_image_pages() {
  3. if ( ! is_page() ) {
  4. return;
  5. }
  6.  
  7. if ( ! has_post_thumbnail() ) {
  8. return;
  9. }
  10.  
  11. $image_args = array(
  12. 'size' => 'rs-featured',
  13. 'attr' => array(
  14. 'class' => 'alignnone featured',
  15. ),
  16. );
  17.  
  18. genesis_image( $image_args );
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement