Skip to content

Instantly share code, notes, and snippets.

@al5dy
Created December 18, 2016 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save al5dy/dfffead57fb5a9e4cbd0bc9d395f0c50 to your computer and use it in GitHub Desktop.
Save al5dy/dfffead57fb5a9e4cbd0bc9d395f0c50 to your computer and use it in GitHub Desktop.
Автоматическое отображение миниатюры вверху страницы
add_action( 'genesis_entry_content', 'featured_post_image', 8 );
function featured_post_image() {
if ( !is_singular( array( 'post', 'page' ) )) return;
the_post_thumbnail('featured');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment