php 在Wordpress上自定义the_post_navigation

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在Wordpress上自定义the_post_navigation相关的知识,希望对你有一定的参考价值。

Use WordPress default function to get next and previous post title with permalink something like this:

    <?php  // FOR PREVIOUS POST
        $prev_post = get_previous_post(); 
        $id = $prev_post->ID ;
        $permalink = get_permalink( $id );
    ?>
    <?php // FOR NEXT POST
        $next_post = get_next_post();
        $nid = $next_post->ID ;
        $permalink = get_permalink($nid);
    ?>
    
Then just use this variable in your HTML structure like below:

<div class="next-timeline">
     <?php next_post_link( '%link', __( 'Next <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
     <h2><a href="<?php echo $permalink; ?>"><?php echo $next_post->post_title; ?></a></h2>
</div>
<div class="previous-timeline">
     <?php previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span> Previous', 'twentyeleven' ) ); ?> 
     <h2><a href="<?php echo $permalink; ?>"><?php echo $prev_post->post_title; ?></a></h2>                           
</div>

以上是关于php 在Wordpress上自定义the_post_navigation的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress 循环:获取循环内的当前帖子计数

在视图上自定义多个手势

在 didFinishLaunching 上自定义视图控制器堆栈

在 iframe 上自定义 css [重复]

使用 Swift 3 在 UICollectionView 上自定义布局

如何在 sylius 上自定义密码验证器?