-1

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

<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(); ?> &raquo</a></li>

<?php endforeach; ?>
</ul>
4

1 に答える 1