برای دیدن عکس از نحوه ی نمایش کلیک کنیدکد:<div class="mmtab4"> <ul> <?php // the query $arms = array( 'post_type' => 'post', 'posts_per_page' => '10', 'offset' => 0, 'cat'=>get_option('mycat4'), 'post_status' => 'publish' ); $the_query = new WP_Query( $arms ); ?> <?php if ( $the_query->have_posts() ) : ?> <!-- pagination here --> <!-- the loop --> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <li><?php the_post_thumbnail('single-post-thumbnail'); ?><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><span> <?php echo human_time_diff( get_the_time('U'), current_time('timestamp') ) . ' پیش'; ?> </span></li> <?php endwhile; ?> <!-- end of the loop --> <!-- pagination here --> <?php wp_reset_postdata(); ?> <?php else : ?> <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p> <?php endif; ?> </ul> </div>
http://uupload.ir/files/nt7_snap1.png