[WordPress]記事を表示する最小処理
記事を表示する最小処理
<?php //各環境に合わせて修正 require( dirname( __FILE__ ) . '/../../wp-blog-header.php' ); //表示する件数 $per_page = 4; query_posts(array('posts_per_page'=>$per_page,'post_status'=>'publish')); ?> <?php if(have_posts()):while(have_posts()):the_post(); ?> <div> <?php $custom_fields = get_post_custom();?> <p><?php the_time('Y/m/d');?></p> <a href="<?php the_permalink();?>"><?php the_title();?></a> <p><?php the_content();?></p> </div> <?php endwhile;endif;?>