سلام خدمت دوستان وردپرسی . من یه کد برای نمایش برترین مطالب ماهانه دارم که میخوام بهش تصویر هر پست وصل بشه (یا به اصطلاح Thumbnail) ممنون میشم اینکارو برام انجام بدین
-
<?php
- " title="<?php the_title(); ?>">
<?php the_title(); ?>
$month = date('m');
$year = date('Y');
query_posts('post_type=post&posts_per_page=10&orderby=meta_value_num&order=DESC&year=DESC&showposts=10=' . $year . '&monthnum=' . $month);
while (have_posts()): the_post(); ?>
<?php
endwhile;
wp_reset_query();
?>