I’m using SimpleModal to allow users to click on a post excerpt on my homepage and popup a box showing the full post. However it doesn’t count for an actual view of the post when this happens. Is there a way to make wordpress recognize it as a view? I’m using wp-postviews to track view counts.
Leave a Reply
You must be logged in to post a comment.
Apparently the plugin does the logging inside the
wp_head
hook:so make sure you call
wp_head()
in your pop-up box, or if you can’t do that (pop-up is not a html document), then just call the function directly, like: