prefix . '_'; } function woocommerce_related_products_args( $args ) { $args['posts_per_page'] = 3; // 3 related products return $args; } function woocommerce_breadcrumbs() { return array( 'delimiter' => ' ', 'wrap_before' => '', 'before' => '', 'after' => '', 'home' => _x('Home', 'breadcrumb', 'artwork-lite'), ); } /* * define the woocommerce_before_main_content callback */ function woocommerce_before_main_content() { echo '
'; } /* * define the woocommerce_archive_description callback */ function woocommerce_archive_description() { echo '
'; } /* * define the woocommerce_archive_description callback */ function woocommerce_before_single_product() { echo '
'; } /* * define the woocommerce_archive_description callback */ function woocommerce_sidebar() { echo '
' . '
' . '
'; } function woocommerce_after_main_content() { echo '
' . '
'; } } new MP_Artwork_Woocommerce();