The popular-posts tag has no wiki summary.
0
votes
1answer
50 views
Popular posts by view with Jetpack
I'm using Jetpack to retrieve the number of views for each blog post.
Is there a way to use this to generate a call to the most viewed posts and list them?
I've been wanting to do that for a long ...
0
votes
1answer
34 views
How to display popular posts in page?
I'm trying to create a "Start here" page on my blog.
I use a template for that, but the content for it is created using the "add new page" wizzard in Wordpress.
I know how I can display the most ...
0
votes
0answers
47 views
How we sort most popular post on the top
I want to sort my posts on the base of most popular. For example i have a dropdown button in menu, which have options
Popular
Last 7days
Last 30days
Last 365days
all posts
So ...
2
votes
1answer
104 views
How to install Wordpress Popular Posts plugin twice?
I've installed Wordpress Popular Posts plugin but found that it displays popular posts only from category. I want to display popular post for custom taxonomy. I found some hack in that plugin. Plugin ...
2
votes
1answer
198 views
Most commented / popular posts and offset
I am using this code to show 3 most popular posts based on number of comments :
<?php
$pop_posts = 3;
$popularposts = "SELECT $wpdb->posts.ID, ...
0
votes
1answer
64 views
Adding popular posts by category in single posts?
I have been trying out several popular posts plugin but I can't seem to find the right one. I have a page where I want to insert popular posts (in between the textual content). I am looking for a ...
0
votes
1answer
135 views
Get the most commented posts for the last x days
I want to get the most commented posts for the last x days,I have the following code:
<?php
global $wpdb;
$weekstart = date('Y-m-d', strtotime('-12 days'));
$query = $wpdb->prepare("
...
1
vote
1answer
496 views
How to display most viewed post in my sidebar?
Hey i wanted to display the 5 most popular post by view count in my sidebar, but i don't want to use a plugin, i want the php function
so that i can edit it manually such as adding thumbnails next to ...
0
votes
1answer
140 views
How to display the top 5 popular links in the header?
I want to display the top 5 popular links in the header. How will I do this?
Also want to display the page hits in the brackets with the links.
Any one who can help?
2
votes
2answers
289 views
How to get popular post from across a network?
I have a multisite network on WP 3.3.1. I now need to get all popular posts from across this network (preferably based on the amount of views).
Is this possible, and how do I do that?
2
votes
3answers
739 views
How do I get a list of popular posts by views?
I am using the Jetpack plugin to get 'site stats' which shows the number of views for blog posts/pages. So I'm no expert or anything but I'm guessing there is a table that stores these views. Is there ...
0
votes
1answer
2k views
How to show Best Selling WP E-Commerce Products
I'm trying (but failing) to create 'Best Sellers' and 'New Releases' pages for my website. I'm using WP-Ecommerce 3.8.4 with WP 3.1.3 and I've gotten close but can't seem to get it right. Any help on ...
0
votes
1answer
158 views
Show tags of currently popular (by views) posts
I'm after a sidebar widget that will show the tags of my site's currently (within the last day) most viewed posts, in order to achieve a rudimentary 'trending topics' widget.
Does this require a ...