Jan 21, 2010

Customizing Mimbo Pro’s Category Summary Display

One of the most frequent questions we get asked is how to customize the order of the homepage category summaries on Mimbo Pro. With the power of child themes and hooks this is actually incredibly straight forward.

It takes just 5 lines of code, placed in your functions.php file, to change your homepage order.

function bm_alterCategoryOrder($settings) {
$settings['category'] = array(1,2,3);
return $settings;
}
add_filter('bm_categorySummaryDetails','bm_alterCategoryOrder');

All you have to do to set the different category orders is swap the 1,2,3 above for a comma separated list of category ids.

Twitter Follow us on Twitter Facebook Like us on Facebook Join us on Google+

. . .

1 Comments Leave a comment ›

  1. Did not work for me.

    Maybe I don’t know where to place it in functions.php of if it needs other code than what is written here

    I’m on latest mimbopro since wordpress 3.0 update

Leave a Response