簡體   English   中英

如何獲取特定類別Wordpress的帖子的標題,圖像和摘錄

[英]How to get Title, Image and excerpt of posts of a specific category 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類別的摘錄?

你可以用它

<?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
?>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM