Table of contents
WP-PostViews
Tags:
, , ,投稿/ページが何回閲覧されたかを表示するWordPressプラグイン
- WordPress.org (wordpress.org)
- サポートフォーラム (wordpress.org) [EN]
- Development log (wordpress.org) [EN]
- Source (github.com) [EN]
検索キーワード: wp-postviews
※インストールの際は「タイトル」や「説明文」などを必ず確認してください
投稿/ページが何回閲覧されたかを表示することができます。
Usage
wp-content/themes/<YOUR THEME NAME>
/index.phpを開きます。
archive.php、single.php、post.phpやpage.phpにも配置できます。
<?php while (have_posts()) : the_post(); ?>
よりも下で 閲覧回数を表示させたい場所に以下を記載します。
<?php if(function_exists('the_views')) { the_views(); } ?>
それか投稿でショートコードを使用します。
[views] or [views id="1"] (where 1 is the post ID)
WP-Admin -> Settings -> PostViewsで設定できます。
ブログ記事
下記に掲載を希望される方はご連絡ください (詳細)
- 《WordPress》シンプルなPV表示プラグイン「WP-PostViews」。記事ごとに最低限のPV数を知りたい人におすすめ (zattadouraku.net)
- WP-PostViewsで閲覧数をWordPressの管理画面に表示する方法 (zunzun1010.com)