Created
December 8, 2015 22:53
-
-
Save stuartduff/843e61cacb4cb85eb84f to your computer and use it in GitHub Desktop.
Add a custom shortcode section to the storefront themes homepage template.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sf_output_custom_shortcode_section() { | |
echo '<section class="storefront-product-section storefront-product-category">'; | |
echo '<h2 class="section-title">' . __( 'Music Category', 'storefront' ) . '</h2>'; | |
echo do_shortcode( '[product_category category="music" columns="4" per_page="4"]' ); | |
echo '</section>'; | |
} | |
add_action( 'homepage', 'sf_output_custom_shortcode_section', 50 ); |
I am actually following a WordPress tutorial on WooCommerce that describes this shortcode, so I decided to search this specific method of displaying a product from a specific category, and found it! so thanks.
If I want to do the same with attributes, or attribute properties, what needs to be changed in this code?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great! thanks