Skip to content

Instantly share code, notes, and snippets.

@maco1028
Last active July 31, 2021 13:25
Show Gist options
  • Save maco1028/f34f47ada69c98549cccfa87d1da2eb6 to your computer and use it in GitHub Desktop.
Save maco1028/f34f47ada69c98549cccfa87d1da2eb6 to your computer and use it in GitHub Desktop.
<?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