Created
January 4, 2013 06:36
-
-
Save tsu-nera/4450427 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WordPressで記事を取得して記事一覧を作成する