我正在尝试使用此代码打印类别并继续打印数组?
<?php $posts = get_posts('category=1&orderby=desc'); foreach($posts as $post) { ?>
<a href="<?php the_permalink() ?>" target="_parent"><?php the_title(); ?></a><br /><?php print(get_the_category($id)); ?>
<?php } ?>
谢谢...