missing single quote added

This commit is contained in:
nishitlangaliya 2018-03-13 11:15:43 +05:30
parent 8fa7a7695a
commit 4b4fd3931e
1 changed files with 2 additions and 2 deletions

View File

@ -1949,8 +1949,8 @@ if ( ! function_exists( 'woocommerce_output_product_categories' ) ) {
*/
function woocommerce_output_product_categories( $args = array() ) {
$args = wp_parse_args( $args, array(
'before' => apply_filters( woocommerce_before_output_product_categories, '' ),
'after' => apply_filters( woocommerce_after_output_product_categories, '' ),
'before' => apply_filters( 'woocommerce_before_output_product_categories', '' ),
'after' => apply_filters( 'woocommerce_after_output_product_categories', '' ),
'parent_id' => 0,
) );