Ben bir eklenti içinde aşağıdaki yöntemi denedim:
get_post_meta($featuredPosts[$i]->ID, "Thumbnail", true);
Aşağıdaki eklenti kodu içinde:
$featuredPosts = new WP_Query();
$featuredPosts->query('showposts=5&cat=1');
for($i=1; $i<=$featuredPosts; $i++) { // second for() loop for post slides
while ($featuredPosts->have_posts()) : $featuredPosts->the_post(); // loop for posts
get_post_meta($featuredPosts[$i]->ID, "Thumbnail", true);
endwhile;
}
ne yazık ki bu herhangi bir değer döndürmüyor: (
Herhangi bir fikir çocuklar?