在自定义wordpress模板中创建最近帖子的链接

时间:2017-05-15 18:29:13

标签: php html wordpress

我正在使用wordpress网站,并希望在我的自定义帖子模板中显示最近添加的帖子的链接,我不知道该怎么做。此链接将转到相应过滤帖子的页面。这里的任何人都建议我使用PHP代码过滤此类帖子并添加链接。

property search

感谢。

1 个答案:

答案 0 :(得分:0)

如果你想显示最新帖子。

请检查贝尔沃代码。

<div id="header-announcements">
<h2>Your Recent Post</h2>
    <?php
    $queryObject = new WP_Query( 'post_type=Your_Custom_Post_Type_Name&posts_per_page=5' );
    // The Loop!
    if ($queryObject->have_posts()) {
    ?>
        <ul>
        <?php
        while ($queryObject->have_posts()) {
            $queryObject->the_post();
            ?>

            <li class="blogpadfing"><a  href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
            <?php
        }
        ?>
        <br>
        <div><a class="mango_btn" href="<?php echo site_url();?>/blog">View More</a></div>
        </ul>

    <?php
    }
    ?>
</div>

我希望这会对你有所帮助。