admin管理员组文章数量:1124080
All is in the title of the question. Title here show the name of the page, i want to show the name of the last post, but i don't know how to do it !
Thanks
<div class="grid-item">
<?php $terms = get_terms( array('taxonomy' => 'category','exclude'=>array(1)) );?>
<?php foreach ($terms as $term) : ?>
<a href="<?php echo get_term_link($term->term_id); ?>" title="<?php echo $term->name; ?>">
<div class="item">
<?php echo $term->name; ?>
<?php the_title(); ?>
</div>
</a>
<?php endforeach; ?>
</div>
本文标签: Display category name and title of last post (in custom post type)
版权声明:本文标题:Display category name and title of last post (in custom post type) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736608412a1945382.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论