Created
December 29, 2018 07:48
-
-
Save Tsunamijaan/4408d0f4680efcb5c11b51efff71583d to your computer and use it in GitHub Desktop.
First post image auto set as featured image
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 auto_featured_image() { | |
global $post; | |
if (!has_post_thumbnail($post->ID)) { | |
$attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" ); | |
if ($attached_image) { | |
foreach ($attached_image as $attachment_id => $attachment) { | |
set_post_thumbnail($post->ID, $attachment_id); | |
} | |
} | |
} | |
} | |
// Use it temporary to generate all featured images | |
add_action('the_post', 'auto_featured_image'); | |
// Used for new posts | |
add_action('save_post', 'auto_featured_image'); | |
add_action('draft_to_publish', 'auto_featured_image'); | |
add_action('new_to_publish', 'auto_featured_image'); | |
add_action('pending_to_publish', 'auto_featured_image'); | |
add_action('future_to_publish', 'auto_featured_image'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! This still works!