2012-08-10 57 views
1

我想獲得特定WordPress類別的帖子標題,圖片和摘錄。我正在使用下面的代碼來獲取特定類別的帖子標題。如何獲取特定類別的標題,圖片和帖子的摘錄Wordpress

global $post; 
$myposts = get_posts('numberposts=5&category_name=Cooling Towers'); 
foreach($myposts as $post) : 
?> 
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> 
<?php endforeach; ?> 

任何想法,我如何獲得張貼圖像以及摘錄的特定WordPress類別?

回答

3

您可以使用此

<?php 
    query_posts(array('posts_per_page'=>5, 'category_name'=>'Cooling Towers')); 
    while (have_posts()) : the_post(); 
?> 
    <h2><a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> 
    <?php if (has_post_thumbnail()): // check for the featured image ?> 
    <a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>" class="opacity"><?php the_post_thumbnail(); ?></a> <!--echo the featured image--> 
<?php 
    endif; 
    the_excerpt(); // echo the excerpt 
    endwhile; 
    wp_reset_query(); // resets main query 
?> 
+1

感謝,效果不錯:) – 2012-08-11 13:04:47

相關問題