Wordpress - 主题自定义帖子类型循环 - 儿童主题

时间:2011-09-29 18:02:37

标签: wordpress loops custom-post-type

我是Thematic的新手,我非常喜欢它,

我想知道我做错了什么, 我得到了这个名为“Intranet”的自定义帖子类型(CPT) 在一个页面中,我想加载一个自定义模板来运行循环,查询显示这些。

但是当我尝试直接在页面模板上更改循环代码时,我只有一个白页。

我以不同的方式尝试:

<?php $intranet = new WP_Query( array( 'paged' => get_query_var('paged'), 'post_type' => 'intranet', 'posts_per_page' => 8 ) ); ?>
<?php while ( $intranet->have_posts() ) : $intranet->the_post(); ?>

并且喜欢这个

<?php global $wp_query;
query_posts("post_type=intranet");
while ( have_posts()) : the_post(); ?>

我之前使用自定义帖子类型来执行此操作,但在Thematic中似乎不起作用。 什么是在Thematic中正确的方法?

1 个答案:

答案 0 :(得分:0)

你能不能只制作一个文件模板,例如page-customposttypename.php