wc_get_template_part( $slug,  $name = '' )

Summary

No summary available.

Source

File: src/BigCommerce/Compatibility/woocommerce-functions.php

	function wc_get_template_part( $slug, $name = '' ) {
		$template = "{$slug}.php";
		if ( $name ) {
			$template = "{$slug}-{$name}.php"; 
		}
		return wc_get_template( $template );
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.