<title><?php the_title(); ?>|<?php bloginfo(‘title’); ?></title>


<div id="pagelink">
<?php if(is_single()): ?>
	<p><?php previous_post_link(); ?></p>
	<p><?php next_post_link(); ?></p>
<?php endif; ?>
</div>

【 CSS 】
.postinfo{
	color:#999999;
	font-size:80%;
	margin-top:-10px;
	margin-bottom:20px;
}

/*記事のページ送り*/
#pagelink{
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
	margin-top:40px;
}
#pagelink p:nth-child(1), #pagelink p:nth-child(2){
	display: table-cell;
    padding: 15px 2px;
	border-top:solid 1px #e0e0e0;
	border-bottom:solid 1px #e0e0e0;
	font-size:80%;
	line-height:140%;
}
#pagelink p:nth-child(1){/*左側*/
	border-right:solid 1px #e0e0e0;
}
#pagelink p:nth-child(2){text-align:right;}



もう一つ
<?php 
  the_post_navigation( array(
    'prev_text'           => '前の記事 - %title',
    'next_text'           => '次の記事 - %title',
    'screen_reader_text'  => '前後の記事へのリンク',
  ) ); 
?>


<section>
<?php $my_query = new WP_Query('&cat=0'); ?>
<?php if ($my_query->have_posts()) : ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>

<article class="kiji">
<img src="<?php echo get_template_directory_uri(); ?>/img/h1-top.gif" width="680" height="54" alt="image" />
	<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<img src="<?php echo get_template_directory_uri(); ?>/img/h1-bottom.gif" width="680" height="54" alt="image" />
	<?php the_content(); ?>
	<p class="postinfo"><?php echo get_the_date(); ?>(<?php the_time(); ?>) | カテゴリー:<?php the_category(','); ?></p>
</article>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>

</section>


【 CSS 】
/*最新の投稿一覧の取得*/
article.kiji h1 a{text-decoration:none;}
article.kiji h1 a:link{color:#000000;}
article.kiji h1 a:visited{color:#000000;}
article.kiji h1 a:hover{color:#000000;}
article.kiji h1 a:active{color:#000000;}

article.kiji{margin-bottom:50px;}
article.kiji p.postinfo{margin-top:30px; color:#999999;}

sample
Thank you!  Word Press