Initial view count
-
I made the following modification to bbp-topics.view.php to get an initial view count without having to view each post first.
function btv_get_topic_view_count( $topic_id = 0 ) { $topic_id = bbp_get_topic_id( $topic_id ); if ( empty( $topic_id ) ) return 0; $views = (int) get_post_meta( $topic_id, '_btv_view_count', true ); /**** begin modification ****/ if ( $views == 0 ) { $views = bbp_get_topic_post_count( $topic_id ); if ( $views > 1 ) $views = $views + bbp_get_topic_reply_count_hidden( $topic_id ); update_post_meta( $topic_id, '_btv_view_count', $views ); } /**** end modification ****/ return $views; }
https://www.ads-software.com/extend/plugins/bbp-topic-views/
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Initial view count’ is closed to new replies.