
內容簡介
使用方法
打開 wp-content/themes/<您的佈景主題名稱>/index.php
您也可以將它放在 archive.php、single.php、post.php 或 page.php 中。
尋找:<?php while (have_posts()) : the_post(); ?>
在它下面的任何地方添加(您想要顯示觀看次數的地方):<?php if(function_exists('the_views')) { the_views(); } ?>
或者您可以在文章中使用shortcode[views]或[views id="1"](其中1是文章的ID)
進入 WP管理員 -> 設置 -> 文章觀看次數來設置外掛程式。
建立狀態
開發
https://github.com/lesterchan/wp-postviews/
翻譯
http://dev.wp-plugins.org/browser/wp-postviews/i18n/
鳴謝
插件圖標由Iconmoon從Flaticon製作
捐贈
我把大部分的業餘時間用於創建、更新、維護和支援這些外掛程式,如果您真的喜歡我的外掛程式並且能夠撥出一些錢的話,我會非常感激。如果無法捐款,也歡迎免費使用。
版本1.76.1
新增:在觀看模板中添加文章作者
新增:增強WordPress 5.3
版本1.76
新增:添加postviews_should_count篩選器
修復:從intval()更改為(int)並與其一起使用sanitize_key()。
版本1.75
新增:使用WP_Query()來獲取最多/最少觀看的文章
版本1.74
新增:增強WordPress 4.7
新增:模板變量%POST_CATEGORY_ID%。它返回帖子的類別ID。如果您使用Yoast SEO Plugin,它將返回優先類別ID。感謝@FunFrog-BY
版本1.73
修復:在預覽模式中,不要計算觀看次數
版本1.72
新增:將%POST_THUMBNAIL%添加到模板變量中
版本1.71
修復:WordPress 4.3中Widget Constructor的通知
版本1.70
修復:與WP-Stats的整合
版本1.69
新增:shortcode [views]或[views id=”POST_ID”]將觀看次數嵌入文章中
新增:添加模板變量%VIEW_COUNT_ROUNDED%以支持四捨五入的觀看次數,例如10.1k或11.2M
版本1.68
新增:添加action hook“postviews_increment_views”和“postviews_increment_views_ajax”
新增:允許在Widget下選擇自定義文章類型
版本1.67
新增:即使WP_CACHE為true,也允許用戶不使用AJAX來更新觀看次數
版本1.66
新增:支持MultiSite網絡啟用
新增:添加%POST_DATE%和%POST_TIME%到模板變量中
新增:添加中國搜索引擎機器人
新增:允許傳遞文章類型的數組以获取最多/最少*()函數。Props Leo Plaw.
修復:將卸載移動到卸載
外掛標籤
開發者團隊
📦 歷史版本下載
原文外掛簡介
Usage
Open wp-content/themes/
You may place it in archive.php, single.php, post.php or page.php also.
Find:
Add Anywhere Below It (The Place You Want The Views To Show):
Or you can use the shortcode [views] or [views id="1"] (where 1 is the post ID) in a post
Go to WP-Admin -> Settings -> PostViews to configure the plugin.
Development
https://github.com/lesterchan/wp-postviews/
Translations
http://dev.wp-plugins.org/browser/wp-postviews/i18n/
Credits
Plugin icon by Iconmoon from Flaticon
Donations
I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.
Version 1.76.1
NEW: Add Post Author in views template
NEW: Bump for WordPress 5.3
Version 1.76
NEW: Added postviews_should_count filter
FIXED: Change to (int) from intval() and use sanitize_key() with it.
Version 1.75
NEW: Use WP_Query() for most/least viewed posts
Version 1.74
NEW: Bump WordPress 4.7
NEW: Template variable %POST_CATEGORY_ID%. It returns Post’s Category ID. If you are using Yoast SEO Plugin, it will return the priority Category ID. Props @FunFrog-BY
Version 1.73
FIXED: In preview mode, don’t count views
Version 1.72
NEW: Add %POST_THUMBNAIL% to template variables
Version 1.71
FIXED: Notices in Widget Constructor for WordPress 4.3
Version 1.70
FIXED: Integration with WP-Stats
Version 1.69
NEW: Shortcode [views] or [views id=”POST_ID”]` to embed view count into post
NEW: Added template variable %VIEW_COUNT_ROUNDED% to support rounded view count like 10.1k or 11.2M
Version 1.68
NEW: Added action hook ‘postviews_increment_views’ and ‘postviews_increment_views_ajax’
NEW: Allow custom post type to be chosen under the widget
Version 1.67
NEW: Allow user to not use AJAX to update the views even though WP_CACHE is true
Version 1.66
NEW: Supports MultiSite Network Activation
NEW: Add %POST_DATE% and %POST_TIME% to template variables
NEW: Add China isearch engines bots
NEW: Ability to pass in an array of post types for get_most/least_*() functions. Props Leo Plaw.
FIXED: Moved uninstall to uninstall.php and hence fix missing nonce. Props Julio Potier.
FIXED: Notices and better way to get views from meta. Props daankortenbach.
FIXED: No longer needing add_post_meta() if update_post_meta() fails.
Version 1.65 (02-06-2013)
FIXED: Views not showing in WP-Admin if “Display Options” is not set to “Display to everyone”
