Merhaba aşağıdaki kodu functions.php de <?php ?> tagları arasına ekleyin.
function b2medya() {
global $post;
$b2medya_thumb = has_post_thumbnail($post->ID);
if (!$b2medya_thumb) {
$b2medya_attached = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
if ($attached_image) {
foreach ($b2medya_attached as $attachment_id => $attachment) {
set_post_thumbnail($post->ID, $attachment_id);
}
}
}
}
add_action('the_post', 'b2medya');
add_action('save_post', 'b2medya');
add_action('draft_to_publish', 'b2medya');
add_action('new_to_publish', 'b2medya');
add_action('pending_to_publish', 'b2medya');
add_action('future_to_publish', 'b2medya');Kodu test etmedim çalışmazsa söylersin yardımcı olmaya çalışırım.Yazıya eklenen resimlerden ilkini öne çıkarılmış görsel yapacaktır.
kodlardaki b2medya nedir ?