Onur89TR adlı üyeden alıntı:
mesajı görüntüle
https://test.selbermachendeko.com/page/28/
19
●566
<?php
// r10.net/iskendercnr
require __DIR__ . '/wp-load.php';
$args = array(
'post_type' => 'post',
'posts_per_page' => -1,
);
$posts = get_posts($args);
foreach ($posts as $post) {
$post_id = $post->ID;
$attachments = get_posts(array(
'post_type' => 'attachment',
'posts_per_page' => -1,
'post_parent' => $post_id,
));
if ($attachments) {
set_post_thumbnail($post_id, $attachments[0]->ID);
}
}
?>