0

我有一个 wordpress 博客,它的主题带有一些自定义代码,可以按类别访问帖子。直到现在我还没有使用过 wordpress,并且想让这段代码适用于页面而不是帖子。到目前为止,我已经尝试了一些来自 codex.wordpress.org 的基本查询,但没有取得多大成功。

有人可以帮忙吗?

<?php $some_array_of_pages = new WP_Query( array( 'ignore_sticky_posts' => 1,    'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', 'category_name' => 'category'  ) ); ?>
  <?php while ($some_array_of_pages->have_posts()) : ?>    
  <?php $properties->the_post(); ?>
<?php $meta1 = get_post_meta( get_the_ID(), 'meta_name', true ); ?>
<?php $meta2 = get_post_meta( get_the_ID(), 'meta_name', true ); ?>
<?php if ($meta1 && $meta2): ?>
//do something here                              
<?php endif; ?>
  <?php wp_reset_postdata(); ?>
  <?php endwhile; ?>
4

1 回答 1

0

将“post_type”添加到您的查询中:

<?php $some_array_of_pages = new WP_Query( array( 'post_type'=>'page'  ) ); ?>

http://codex.wordpress.org/Class_Reference/WP_Query

OP的完整示例:

<?php $some_array_of_pages = new WP_Query( array( 'ignore_sticky_posts' => 1,    'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', 'category_name' => 'category', 'post_type' => 'page'  ) ); ?>
于 2013-02-23T01:14:45.423 回答