wordpress get_categories()问题

时间:2009-06-07 18:14:21

标签: php wordpress wordpress-theming

我创建了下面的函数,用于列出id为3的父类的子类别。

该函数还应返回每个子类别中第一篇文章的元数据。

这有效(但有点)但不仅仅获得一组数据,而是返回3组具有不同结果。

任何想法为什么?

global $cat;
  global $post;
  $categories = get_categories('child_of=3');
  foreach ($categories as $cat) :
    $postslist = get_posts($cat->cat_ID, 'numberposts=1&order=DESC');
    foreach ($postslist as $post) :
        $option = '<li id="'.get_post_meta($post->ID, 'id', true).'">';
        $option .='<a class="preview" rel="'.get_post_meta($post->ID, 'thumbnail', true).'" ';
        $option .='href="'.get_bloginfo('url').'/'.$post->post_name.'">';
        $option .=$cat->cat_name;
        $option .='</a>';
        $option .='</li>';
    echo $option;
    endforeach;
  endforeach;

2 个答案:

答案 0 :(得分:1)

如果您查看wordpress.org上的get_posts()文档,您会看到该函数只有一个参数。

get_posts('numberposts=1&category='. $cat->cat_ID .'&order=DESC');

答案 1 :(得分:0)

我已经弄清楚我哪里出错了!这样:

$postslist = get_posts($cat->cat_ID, 'numberposts=1&order=DESC');

已被替换为:

$postslist = get_posts('category='.$cat->cat_ID.'numberposts=1&order=DESC');

这给出了实际的类别ID。