プラグイン不要で表示できるコード
WordPressにplug-inは必需品ですが、あれもこれも入れるとトンでもない事態になっちゃいます
マニア以外では意外と知らない人が多いと思われる記事表示方法を伝授
人気の記事を表示
コメント数が多い記事が人気の記事
DESC LIMITの値で表示させる記事の数を設定
<ul>
<?php
$result = $wpdb->get_results("SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 5");
foreach ($result as $post) {
setup_postdata($post);
$postid = $post->ID;
$title = $post->post_title;
$commentcount = $post->comment_count;
if ($commentcount != 0) {
?>
<li>
<h3><a href="<?php echo get_permalink($postid); ?>"" title="<?php echo $title ?>">
<?php echo $title ?>
</a></h3>
<p><?php echo get_post_meta($post->ID,‘short_desc’,true); ?></p>
</li>
<?php } } ?>
</ul>
関連する記事を表示
同タグが与えられているものを関連する記事として表示
showpostsの値で表示させる記事の数を設定
<ul>
<?php
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$first_tag = $tags[0]->term_id;
$args=array(
‘tag__in’ => array($first_tag),
‘post__not_in’ => array($post->ID),
‘showposts’=>5,
‘caller_get_posts’=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li>
<h4>
<a href="<?php the_permalink();?>"" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</h4>
<p><?php echo get_post_meta($post->ID,‘short_desc’,true); ?></p>
</li>
<?php endwhile; wp_reset_query(); ?>
<?php } else { ?>
<p>関連する記事は見当たりません</p>
<?php } } ?>
</ul>
記事をランダムに表示
showpostsの値が表示させる記事数
カテゴリーを指定する場合はカテゴリーIDを指定
<?php if (have_posts()) : query_posts(‘showposts=5&orderby=rand’); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>""><?php the_title(); ?></a></li>
<?php endwhile; endif; ?>
</ul>
他にもプラグイン無しでいろいろとできちゃいますので研究してみてください
Pilipinas Top Site: Please, Click on the Banner!
Relevant Books: プラグイン不要で表示できるコード
Recently Added Entries
Most Viewed Posts
- Jamilla Obispo - 2,149 views
- Embassy Avenue living in Japan - 1,562 views
- Hayag Live Radyo Philippines - 1,474 views
- Teen Filipina video GAMERS - 1,418 views
- WordPress3.0でマルチサイト設定 - 909 views
- Sexy Bar Girls Dancing! - 887 views
- Kristel Moreno - 851 views
- Taiwan Entertainment online! - 834 views
- Vagina MONSTER - 825 views
- BoA – HURRICANE VENUS - 821 views







