'; } /** * Primary navigation wrapper close * @return void */ function boutique_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 */ function boutique_product_columns_three( $args ) { $args['limit'] = 3; $args['columns'] = 3; return $args; }