自定义页面模板上的wordpress中的帖子格式问题

时间:2012-11-24 23:09:55

标签: php html wordpress

嘿伙计们所以我试图让一个循环运行来获取页面上某个类别内的所有帖子,但由于某种原因没有发生任何事情?

代码:

<?php
/*
Template Name: djequip
*/

get_header(); ?>

        <div id="primary">

            <div id="content" role="main">

                <?php /*query_posts('test');uncategorized*/
                if ( have_posts() ) : while ( have_posts() ) : the_post(); 
                 get_template_part( 'content', get_post_format() ); 
                endwhile; endif; ?>

            </div><!-- #content -->
        </div><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>

如果你能提供帮助,请告诉我,谢谢你!

1 个答案:

答案 0 :(得分:2)

<?php /* Template Name: TEMPLATE NAME */ ?>
<?php get_header();?>

<?php query_posts('category_name=CATEGORY NAME'); ?>
   <?php while (have_posts()) : the_post(); ?>
      <?php the_excerpt(); ?>
<?php endwhile; ?>
这是什么意思?

  

the_excerpt

可以更改为

  

the_content

另外我想补充说你可以把WP放在那里。