繁体   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