Advertisement
srikat

Untitled

Oct 11th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. add_action( 'wp_head', 'sk_add_archives_image' );
  2. function sk_add_archives_image() {
  3. if ( class_exists( 'MultiPostThumbnails' ) ) {
  4. new MultiPostThumbnails(
  5. array(
  6. 'label' => 'Archives Image',
  7. 'id' => 'archives-image',
  8. 'post_type' => 'post'
  9. )
  10. );
  11. }
  12. }
  13.  
  14. add_action( 'genesis_before_entry', 'sk_archives_image' );
  15. function sk_archives_image() {
  16.  
  17. // if we are on a single page, abort.
  18. if ( is_singular() ) {
  19. return;
  20. }
  21.  
  22. if ( class_exists( 'MultiPostThumbnails' ) && MultiPostThumbnails::has_post_thumbnail( 'post', 'archives-image' ) ) {
  23. remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
  24.  
  25. add_action( 'genesis_entry_content', function () {
  26. MultiPostThumbnails::the_post_thumbnail( 'post', 'archives-image', null, 'medium', array( 'class' => 'alignleft' ) );
  27. }, 8 );
  28. }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement