php 页面-CPT-上市与 - pagination.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 页面-CPT-上市与 - pagination.php相关的知识,希望对你有一定的参考价值。

<?php
	/* Template Name: Demo - CPT with pagination
 	 * Template will display listing of 'custom post type' along with pagination underneath (numerical style)
 	 */
?>
<?php get_header() ?>

<?php
	$currentPage = get_query_var( 'paged' ); 			// Get var from query

	$args = array(
				'post_type' 		=> 'product'		// Custom post type
				,'posts_per_page' 	=> 2				// Max no of post to be displayed
				,'paged'			=> $currentPage		// get the current page no
			);
	$cptArr = new WP_Query($args);


	if($cptArr->have_posts()) :							// If post find in array
		echo '<ul>';

		while($cptArr->have_posts()) :					// loop till last post procsessed
			$cptArr->the_post();

			echo '<li>';
				the_title();
			echo '</li>';

		endwhile;

		echo paginate_links( array('total' => $cptArr->max_num_pages) );

		echo '</ul>';
	endif;
?>

<?php get_footer() ?>

以上是关于php 页面-CPT-上市与 - pagination.php的主要内容,如果未能解决你的问题,请参考以下文章

php ACF Pro - CPT的选项页面

php [WordPress] - 在CPT页面上替换gettext

php 从所有cpt和页面中删除作者框。但是在博客上显示

php 联系表单7插件:在使用Contact Form 7短代码的页面,帖子和CPT上加载Javascript和CSS。

php 联系表单7插件:在使用Contact Form 7短代码的页面,帖子和CPT上加载Javascript和CSS。

php PHP重写规则 - 修复与CPT重写Slug相同的Slug分页