Guest User

Untitled

a guest
Apr 26th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2.  
  3. // Copy/Paste this code to overwrite the current code, starting at Line 220 of /coaching-pro/lib/theme-setup.php
  4.  
  5. add_action( 'genesis_entry_header', 'coaching_pro_show_featured_post_image', 1 );
  6. function coaching_pro_show_featured_post_image() {
  7. // only show on single posts and pages
  8. if ( ! is_single() && ! is_page() || ! has_post_thumbnail() ) {
  9. return;
  10. }
  11.  
  12. if ( $image = genesis_get_image( 'format=url&size=featured-image' ) ) {
  13. printf( '<img class="post-photo aligncenter" src="%s" alt="%s" />', $image, the_title_attribute( 'echo=0' ) );
  14. }
  15. }
  16.  
  17. ?>
Add Comment
Please, Sign In to add comment