本教程是為了解決那些剛剛創(chuàng)建的網(wǎng)站,被訪客瀏覽時,網(wǎng)站文章閱讀量數(shù)字顯示個位或是十位數(shù)的尷尬,以下內(nèi)容只針對于主題安裝或是集成了wp-postviews插件的wordpress主題,通過以下wordpress插件的修改方法與wordpress主題的修改方法實現(xiàn)流量爆棚的效果。
插件修改/wp-content/plugins/wp-postviews/wp-postviews.php文件646行函數(shù)increment_views:
### Function: Increment Post Viewsincrement_views();function increment_views() {????global $wpdb;????$post_id = intval($_GET[‘postviews_id’]);????if($post_id > 0 && defined(‘WP_CACHE’) && WP_CACHE) {????????$post_views = get_post_custom($post_id);????????$post_views = intval($post_views[‘views’][0]);????????if(!update_post_meta($post_id, ‘views’, ($post_views+1))) {????????????add_post_meta($post_id, ‘views’, 1, true);????????}????}}修改后:### Function: Increment Post Viewsincrement_views();function increment_views() {????global $wpdb;????$post_id = intval($_GET[‘postviews_id’]);????if($post_id > 0 && defined(‘WP_CACHE’) && WP_CACHE) {????????$post_views = get_post_custom($post_id);????????$post_views = intval($post_views[‘views’][0]);????????$viewrnd=rand(2,5);????????if(!update_post_meta($post_id, ‘views’, ($post_views+$viewrnd))) {????????????add_post_meta($post_id, ‘views’, $viewrnd, true);????????}????}}
無天博客
掃一掃加微信 
$viewrnd=rand(2,5);
這個是重點