Hello,
I’ve managed to show a list of popular posts for the past month; however, I’d like to limit the number of posts that are displayed. Since I’m using the display_by=“month” variable, the limit=“1” pertains to the month variable and I’m unsure how to limit the number of posts displayed in this instance.
Here is my code:
<div class="grid_6 omega">
<h3>Most Popular This Month</h3>
<p><ul><br />
{exp:weblog:entries weblog="blog" orderby="view_count_one" dynamic="no" status="open||featured" display_by="month" limit="1"}<br />
<li><a href="http://{title_permalink=">{title}</a></li><br />
{/exp:weblog:entries} <br />
</ul><br />
</div>Thank you for any advice!