这是一个自定义帖子页面,应该输出所有帖子 - 下面的代码有什么问题吗?
<ul>
<?php
global $post;
$args = array();
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li><?php posted_on(); ?><a href="<?php the_permalink(); ?>"><?php the_title(); ?> »</a></li>
<?php endforeach; ?>
</ul>