我有一个自定义后类型类别,它的名字是捐款和捐款类别有50个职位。 现在我想获取所有这些职位的任何帮助吗?
我想说明的模板页面上,名为/ 模板名称:帮助捐助 /
我尝试了这一切,但它不是为我工作。
<?php query_posts('category_name=donations&post_type=help'); ?>
<?php while(have_posts()): the_post(); ?>
<?php the_title(); ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
也这一个了不工作。
<?php $the_query = new WP_Query('category_name=donations&post_type=help'); ?>
<?php while($the_query->have_posts()): $the_query->the_post(); ?>
<?php the_title(); ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>