php 循环自定义帖子类型分页

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 循环自定义帖子类型分页相关的知识,希望对你有一定的参考价值。

<?php
echo $next_start;
	$prev_post = get_adjacent_post( false, '', true );

	#print_r($prev_post);
	if ( is_a( $prev_post, 'WP_Post' ) ) {
		previous_post_link( '%link', __('Previous' , 'skivvy') );
	} else { 
		$first = new WP_Query('posts_per_page=1&order=DESC&post_type=saints');
			$first->the_post();
			echo '<a href="' . get_permalink() . '">Previous Post</a>';
		wp_reset_query();
	} 

echo $next_end;

echo $prev_start;
	$next_post = get_adjacent_post( false, '', false );
	#print_r($next_post);
	if ( is_a( $next_post, 'WP_Post' ) ) { 
		next_post_link('%link', 'Next'); 
	} else { 
		$last = new WP_Query('posts_per_page=1&order=ASC&post_type=saints');
			$last->the_post();
			echo '<a href="' . get_permalink() . '">Next Post</a>';
		wp_reset_query();
	}
echo $prev_end;

以上是关于php 循环自定义帖子类型分页的主要内容,如果未能解决你的问题,请参考以下文章

php 自定义帖子类型分页WordPress

php 在WordPress中使用自定义帖子类型分页

wordpress中自定义帖子类型的分页

自定义帖子类型和分类法分页 404 错误

php WordPress - 自定义帖子类型循环

php 自定义帖子类型循环