これは、すべての投稿を出力するカスタム投稿ページです。以下のコードに問題はありますか?
<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>