我的餐厅(3Slider JQuery)打电话,显示最后5个员额。 它从一个称为umb的习俗领域收集图像。
相反,我喜欢把那些在umb本习俗领域具有价值的图像只打上。 这是可能的吗?
现 问 题
<?php
$my_query = new WP_Query( showposts=5 );
while ($my_query->have_posts()) : $my_query->the_post();
?>
<li class="sliderImage"> <a href="<?php the_permalink() ?>" rel="bookmark"> <img class="featimg" src="<?php echo get_post_meta($post->ID, thumb , true) ?>" alt="<?php the_title(); ?>" />
<span class="des"><h1><?php the_title(); ?></h1><?php the_excerpt(); ?></span>
</a>
</li>
<?php endwhile; ?>
提前感谢。