プラグインを利用しない全記事リストのコードを少しアレンジしてみた。
STINGER3の「PAGE itiran 固定ページテンプレート (page-itiran.php)」を利用して記事一覧を作ろうと思っている人はそのままコピー&ペーストでOK。
ほかのテーマを使っている人は少しアレンジが必要。
STINGER3「PAGE itiran 固定ページテンプレート (page-itiran.php)」用
<?php
/*
Template Name:PAGE itiran
*/
?>
<?php get_header(); ?>
<div class="post">
<!--ループ開始-->
<h1 class="entry-title">
<?php the_title(); ?>
</h1>
<div class="kizi">
<div class="sumbox02">
<div id="topnews">
<div>
<ul style="list-style-type: none"><?php
query_posts($query_string);
query_posts('posts_per_page=20&cat=0&paged='.$paged);//表示したいカテゴリIDを列挙
?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<li><a style="text-decoration: none; background-color: #FFD1D1; color: #000; padding-top: 10px; padding-bottom: 9px; padding-left: 5pt; width: 98%; border-color: #FFD1D1; border-width: thin; border-style: solid; border-radius: 25px 25px 25px 25px;font-size: 16px; "href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
<br>
【最終更新日】<?php the_modified_date('Y/m/d') ?> |【初回公開日】<?php the_time('Y/m/d') ?><br>
【カテゴリー】 <?php the_category(', ') ?><br>
【タグ】<?php the_tags('', ', '); ?>
</br><?php echo mb_substr( strip_tags( stinger_noshotcode( $post->post_content ) ), 0, 60 ) . ''; ?></li>
<p class="motto"><a class="more-link" href="<?php the_permalink() ?>">続きを見る</a><p>
<?php endwhile;
?>
<?php else:
?>
<p>記事はありませんでした</p>
<?php
endif;
wp_reset_postdata();
?>
</div>
</div>
</div>
</div>
<!--/kizi-->
<!--ページナビ-->
<?php if (function_exists("pagination")) {
pagination($wp_query->max_num_pages);
} ?>
<!--ループ終了-->
</div>
<!-- END div.post -->
<?php get_footer(); ?>
ほかのテーマを使っている人用全記事リストアレンジコード
<?php
/*
Template Name:PAGE itiran
*/
?>
<?php get_header(); ?>
<div class="post">
<!--ループ開始-->
<h1 class="entry-title">
<?php the_title(); ?>
</h1>
<div>
<div>
<div>
<div>
<ul style="list-style-type: none"><?php
query_posts($query_string);
query_posts('posts_per_page=20&cat=0&paged='.$paged);//表示したいカテゴリIDを列挙
?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<li><a style="text-decoration: none; background-color: #FFD1D1; color: #000; padding-top: 10px; padding-bottom: 9px; padding-left: 5pt; width: 98%; border-color: #FFD1D1; border-width: thin; border-style: solid; border-radius: 25px 25px 25px 25px;font-size: 16px; "href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
<br>
【最終更新日】<?php the_modified_date('Y/m/d') ?> |【初回公開日】<?php the_time('Y/m/d') ?><br>
【カテゴリー】 <?php the_category(', ') ?><br>
【タグ】<?php the_tags('', ', '); ?>
</br><?php echo mb_substr( strip_tags( stinger_noshotcode( $post->post_content ) ), 0, 60 ) . ''; ?></li>
<p class="motto"><a class="more-link" href="<?php the_permalink() ?>">続きを見る</a><p>
<?php endwhile;
?>
<?php else:
?>
<p>記事はありませんでした</p>
<?php
endif;
wp_reset_postdata();
?>
</div>
</div>
</div>
</div>
<!--/kizi-->
<!--ページナビ-->
<?php if (function_exists("pagination")) {
pagination($wp_query->max_num_pages);
} ?>
<!--ループ終了-->
</div>
<!-- END div.post -->
<?php get_footer(); ?>
使っているテーマにページネーションがついていない場合
使っているテーマにページャー(ページ送り)がついていない場合はfunction,phpに以下の記述を追加する。
//ページャー機能
function pagination($pages = '', $range = 4)
{
$showitems = ($range * 2)+1;
global $paged;
if(empty($paged)) $paged = 1;
if($pages == '')
{
global $wp_query;
$pages = $wp_query->max_num_pages;
if(!$pages)
{
$pages = 1;
}
}
if(1 != $pages)
{
echo "<div class=\"pagination\"><span>Page ".$paged." of ".$pages."</span>";
if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link
(1)."'>« First</a>";
if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹
Previous</a>";
for ($i=1; $i <= $pages; $i++)
{
if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems
))
{
echo ($paged == $i)? "<span class=\"current\">".$i."</span>":"<a href='".get_pagenum_link
($i)."' class=\"inactive\">".$i."</a>";
}
}
if ($paged < $pages && $showitems < $pages) echo "<a href=\"".get_pagenum_link($paged +
1)."\">Next ›</a>";
if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a
href='".get_pagenum_link($pages)."'>Last »</a>";
echo "</div>\n";
}
}
全記事リストの表示方法
wordpressの全記事リストを表示するには固定ページを利用する。
*固定ページを利用した全記事リストの公開方法はこちらを見てね。
もとの全記事リストのコード
wordpressプラグインを使わない全記事リストまとめページ
wordpressでプラグインを使わない全記事一覧(全記事リスト)の作り方を記事にした時系列で目次風にしてあるページはこちら。
興味のある人は見てみてね。
コメント