Custom theme without hooks
-
Do i have to use hooks while developing custom theme for woocommerce?
For example content-single-product.php – to get summary info, by default its called by do_action( ‘woocommerce_single_product_summary’ ); hook and if i want to change element order, remove some info i have to write some new functions, remove actions etc,.
is it ok i dont use hooks but to get the same info i delete that hook and use:
<?php
wc_get_template( ‘single-product/title.php’);
wc_get_template( ‘single-product/rating.php’);
wc_get_template( ‘single-product/price.php’);
wc_get_template( ‘single-product/short-description.php’);
?>Im new to woocommerce and WordPress in general, so i might not fully understand the concept of hooks in themes.
- The topic ‘Custom theme without hooks’ is closed to new replies.