Created
November 20, 2012 00:40
-
-
Save fdaciuk/4115191 to your computer and use it in GitHub Desktop.
[WORDPRESS] Setar a primeira imagem do post como post_thumbnail se não houver nenhuma setada. (Créditos a Bruno Cantuaria)
This file contains 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
function theme_autoset_featured_image($post_ID) { | |
// Verifica se o arquivo enviado e uma imagem | |
if (!wp_attachment_is_image($post_ID)) | |
return; | |
// Vamos pegar os dados do arquivo para | |
// termos acesso à ID do post ao qual foi enviado | |
$post = get_post($post_ID); | |
// Se o ID do parent for 0, o arquivo não foi enviado | |
// através de um post | |
if ($post->post_parent == 0) | |
return; | |
//Vamos verificar se já há algum featured para o post | |
$already_has_thumb = has_post_thumbnail($post->post_parent); | |
if (!$already_has_thumb) { | |
// GG! Agora é só definir | |
set_post_thumbnail($post->post_parent, $post_ID); | |
} | |
} | |
// Vamos ligar a função ao hook ativado após o envio do arquivo | |
add_action("add_attachment","theme_autoset_featured_image"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment