在不使用WP_QUERY的情况下在小工具中检索自定义帖子类型的列表?

时间:2013-05-09 作者:janoChen

我正在使用以下小部件检索自定义帖子类型的列表jobs:

class FeaturedJobsWidget extends WP_Widget
{
  function FeaturedJobsWidget()
  {
    $widget_ops = array(\'classname\' => \'FeaturedJobsWidget\', \'description\' => \'Displays a random post with thumbnail\' );
    $this->WP_Widget(\'FeaturedJobsWidget\', \'Featured Jobs\', $widget_ops);
  }

  function form($instance)
  {
    $instance = wp_parse_args( (array) $instance, array( \'title\' => \'\' ) );
    $title = $instance[\'title\'];
?>
  <p><label for="<?php echo $this->get_field_id(\'title\'); ?>">Title: <input class="widefat" id="<?php echo $this->get_field_id(\'title\'); ?>" name="<?php echo $this->get_field_name(\'title\'); ?>" type="text" value="<?php echo attribute_escape($title); ?>" /></label></p>
<?php
  }

  function update($new_instance, $old_instance)
  {
    $instance = $old_instance;
    $instance[\'title\'] = $new_instance[\'title\'];
    return $instance;
  }

  function widget($args, $instance)
  {
    extract($args, EXTR_SKIP);

    echo $before_widget;
    $title = empty($instance[\'title\']) ? \' \' : apply_filters(\'widget_title\', $instance[\'title\']);

    if (!empty($title))
      echo $before_title . $title . $after_title;;

    // WIDGET CODE GOES HERE
    ?>
      <ul class="featured-jobs">
      <?php // Create and run custom loop
        $custom_posts = new WP_Query();
        $custom_posts->query(\'post_type=jobs&posts_per_page=8\');
        while ($custom_posts->have_posts()) : $custom_posts->the_post();
      ?>
        <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
      <?php endwhile; ?>
      <li class="see-all-positions"><a href="http://www.pixelmatic.com/open-jobs/">See All Positions >></a></li>
      </ul>
    <?php

    echo $after_widget;
  }

}
问题是这部分:

  <?php // Create and run custom loop
    $custom_posts = new WP_Query();
    $custom_posts->query(\'post_type=jobs&posts_per_page=8\');
    while ($custom_posts->have_posts()) : $custom_posts->the_post();
  ?>
似乎破坏了其他小部件(不确定使用它是否是一种不好的做法WP_Query 在小部件中)。

有没有其他方法可以在小部件中显示自定义帖子类型的列表?

2 个回复
最合适的回答,由SO网友:Vinod Dalvi 整理而成

使用wp_reset_postdata()函数在while循环之后重置自定义wp\\u查询,如以下代码所示,这样它就不会中断其他wordpress循环。

  <?php // Create and run custom loop
    $custom_posts = new WP_Query();
    $custom_posts->query(\'post_type=jobs&posts_per_page=8\');
    while ($custom_posts->have_posts()) : $custom_posts->the_post();
  ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  <?php endwhile; ?>
  <?php wp_reset_postdata(); ?>
有关更多信息,请访问this page.

SO网友:birgire

现在还不清楚你所说的“破坏其他小部件”是什么意思,但你可以尝试添加

wp_reset_postdata()
在while循环后恢复全局$post 变量,或改为尝试此操作

get_posts( array(\'post_type\' => \'jobs\',\'posts_per_page\' => \'8\') );
看看这是否有什么不同。

结束