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)