Tagged Questions
-1
votes
1answer
33 views
Integrating CSS Into a WP Function Call [closed]
Below is a code I use to display post views. It is integrated with an options panel which allows users to choose whether to display it.
I would like to integrate the div class .postviews directly ...
0
votes
1answer
52 views
Post Views Code Hacks
// Post views
function getPostViews($postID){
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
...