我想在我的wordpress中有一个页面,其中包含所有帖子的所有链接。与http://stackoverflow.com/questions/8953585/wordpress-get-links-to-all-posts-on-one-page
所以在该帖子回答中显示以下代码。我正在使用wordpress并在我的本地服务器上测试它。因此,如何运行此代码并在我的网站中添加页面将全部发布链接。
我没有把这段代码放在哪里。
<?php
$args = array( 'numberposts' => -1, 'orderby' => 'post_date' );
$postslist = get_posts( $args );
foreach ($postslist as $post) : setup_postdata($post); ?>
<div>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<br />
<?php the_date(); ?>
<br />
<?php the_excerpt(); ?>
</div>
<?php endforeach; ?>