人気の記事をランキングで表示するプラグイン

2011.03.01

WP-PostViews

よく見られている記事をランキングで表示してくれるプラグイン。
下記よりダウンロード。
WP-PostViews

  1. ダウンロードし、ファイルを解凍。
  2. wp-content/plugins のフォルダに入れる
  3. 管理画面からプラグインを有効にする。

ランキングにカウント数も表示したい時

<?php if(function_exists('the_views')) { the_views(); } ?>

ランキングの表示方法

<?php if (function_exists('get_most_viewed')): ?>
   <ul>
      <?php get_most_viewed(); ?>
   </ul>
<?php endif; ?>

記事を5つ出したい場合

<?php get_most_viewed('post',5); ?>

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

*

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <img localsrc="" alt="">