How can one reset the number of post views in order to remove a specific page from appearing in the “Popular” pages WordPress widget?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Late to the party, I know, but I needed to figure this out today, which I did. So in case anyone else needs to know (for reference, I’m running WordPress version 3.3.1):
Page views are stored in the
wp_postmetatable with ameta_keyofpost_views_count. Here’s the query I used to find the views of a single post:The query returned 2 results. I’m not sure why, but setting the
meta_valueof both to zero did the job for me.