php WordPress自定义帖子类型教程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress自定义帖子类型教程相关的知识,希望对你有一定的参考价值。
<?php
if(get_post_type()=='feedback'):
?>
<h3>Feedback</h3>
<?php
query_posts('showposts=1&post_type=feedback&paged='.$paged);
while ( have_posts() ) : the_post();
?>
<!--enter your feedback template code here-->
<?php endwhile; ?>
<div class="left"><?php previous_posts_link('« Newer'); ?></div>
<div class="right"><?php next_posts_link('Older »'); ?></div>
</section>
<?php // end feedback
else: ?>
<h3><?php if (is_category()) { echo single_cat_title()." | "; } ?>Blog</h3>
<?php
while ( have_posts() ) : the_post(); ?>
<!--enter your blog template code here-->
<?php
endwhile;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages,
'prev_text' => __('« Newer'),
'next_text' => __('Older »')
) );
?>
</section>
<?php endif; ?>
以上是关于php WordPress自定义帖子类型教程的主要内容,如果未能解决你的问题,请参考以下文章
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程