Created
December 5, 2012 23:51
-
-
Save claudiosanches/4220614 to your computer and use it in GitHub Desktop.
WordPress - Thumbnails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Adiciona suporte para os thumbnails | |
add_theme_support( 'post-thumbnails' ); | |
// Adiciona os tamanhos que vai usar | |
// No exemplo ela chama 'thumb_home' e tem largura e altura iguais a 150px e faz crop | |
add_image_size( 'thumb_home', 150, 150, true ); | |
// Mais exemplos de como adicionar os tamanhos: | |
// http://codex.wordpress.org/Function_Reference/add_image_size | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// E aqui para chamar a thumbnail se o post tiver: | |
if ( has_post_thumbnail() ) { | |
the_post_thumbnail( 'thumb_home' ); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment