ページテンプレートにこのコードがあります。
これは私が今持っているものです: http://www.ohright.com/emoticons/
すべての投稿画像を 1 ページあたり 20 枚の画像で表示し、下にページネーションを表示できるように変更するにはどうすればよいですか?
<?php
/*
Template Name: emoticons-page
*/
get_header(); ?>
<div id="content">
<div id="main">
<?php query_posts('cat=44'.get_the_title().'&post_status=publish,future');?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p><?php the_content(); ?>
<?php endwhile; else: endif; ?>
</div>
</div>
<?php get_footer(); ?>