Skip to content

Instantly share code, notes, and snippets.

@tsu-nera
Created January 4, 2013 06:36
Show Gist options
  • Save tsu-nera/4450427 to your computer and use it in GitHub Desktop.
Save tsu-nera/4450427 to your computer and use it in GitHub Desktop.
<ul>
<?php
$args = array( 'numberposts' => -1, 'cat'= 39; );
$posts = get_posts($args); global $post;?>
<?php foreach($posts as $post): ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
@tsu-nera
Copy link
Author

tsu-nera commented Jan 4, 2013

WordPressで記事を取得して記事一覧を作成する

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment