Hi, in the Brightbox combo widget (sidebar): how can i display the Recent posts instead of the Popular posts by default?
Thanks!
Hi, in the Brightbox combo widget (sidebar): how can i display the Recent posts instead of the Popular posts by default?
Thanks!
Hey,
in brightbox\framework\php\class-framework-widgets.php you'll find following code:
echo '<div class="tab first_tab"><span>'.__('Popular', 'avia_framework').'</span></div>';
echo "<div class='tab_content'>";
avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts);
echo "</div>";
echo '<div class="tab"><span>'.__('Recent', 'avia_framework').'</span></div>';
echo "<div class='tab_content'>";
avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc');
echo "</div>";
Replace it with:
echo '<div class="tab"><span>'.__('Recent', 'avia_framework').'</span></div>';
echo "<div class='tab_content'>";
avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc');
echo "</div>";
echo '<div class="tab first_tab"><span>'.__('Popular', 'avia_framework').'</span></div>';
echo "<div class='tab_content'>";
avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts);
echo "</div>";Thanks again dude! Support rocks here
Glad Dude could help you =]
You must log in to post.