'; } /** * Primary navigation wrapper close * @return void */ public function primary_navigation_wrapper_close() { echo ''; } /** * Return args to set product display limit and column amount to 3 * @param array $args args passed to the filter * @return array the modified args */ public function product_columns_three( $args ) { $args['limit'] = 3; $args['columns'] = 3; return $args; } } } return new Boutique_Template();