Created
March 11, 2012 06:39
-
-
Save kachi/2015327 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> | |
| <li><h2>ランダム記事</h2> | |
| <ul> | |
| <?php | |
| $rand_posts = get_posts('numberposts=5&orderby=rand'); | |
| foreach( $rand_posts as $post ) : | |
| ?> | |
| <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> | |
| <?php endforeach; ?> | |
| </ul> | |
| </li> | |
| </ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment