Last active
July 31, 2021 13:25
-
-
Save maco1028/f34f47ada69c98549cccfa87d1da2eb6 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
<?php query_posts('showposts=6'); ?> | |
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> | |
<?php the_date('Y年m月d日(D) h:i:s'); ?></li> | |
<?php endwhile; endif; ?> | |
<?php wp_reset_query(); ?> | |
//カテゴリーごとに新着エントリー表示(カテゴリー3の最新エントリー10件を表示 | |
<ul class="qa1_list"> | |
<?php $myposts = get_posts('numberposts=10&category=3'); foreach($myposts as $post) : ?> | |
<li><?php echo get_the_date("Y年n月j日(D)"); ?> <a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?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