tag * * @see header.php */ function responsive_container() { do_action( 'responsive_container' ); } /** * Just after closing * * @see footer.php */ function responsive_container_end() { do_action( 'responsive_container_end' ); tha_footer_before(); } /** * Just after opening
* * @see header.php */ function responsive_header() { do_action( 'responsive_header' ); tha_header_before(); } /** * Just after opening * * @see header.php */ function responsive_header_end() { do_action( 'responsive_header_end' ); tha_header_after(); } /** * Just before opening
* * @see header.php */ function responsive_wrapper() { do_action( 'responsive_wrapper' ); tha_content_before(); } /** * Just after opening
* * @see header.php */ function responsive_wrapper_top() { do_action( 'responsive_wrapper_top' ); tha_content_top(); } /** * Just after opening
* * @see header.php */ function responsive_in_wrapper() { do_action( 'responsive_in_wrapper' ); } /** * Just before closing
* * @see header.php */ function responsive_wrapper_bottom() { do_action( 'responsive_wrapper_bottom' ); tha_content_bottom(); } /** * Just after closing
* * @see header.php */ function responsive_wrapper_end() { do_action( 'responsive_wrapper_end' ); tha_content_after(); } /** Just before
* * @see index.php */ function responsive_entry_before() { do_action( 'responsive_entry_before' ); tha_entry_before(); } /** Just after
* * @see index.php */ function responsive_entry_top() { do_action( 'responsive_entry_top' ); tha_entry_top(); } /** Just before
* * @see index.php */ function responsive_entry_bottom() { do_action( 'responsive_entry_bottom' ); tha_entry_bottom(); } /** Just after
* * @see index.php */ function responsive_entry_after() { do_action( 'responsive_entry_after' ); tha_entry_after(); } /** Just before comments_template() * * @see index.php */ function responsive_comments_before() { do_action( 'responsive_comments_before' ); tha_comments_before(); } /** Just after comments_template() * * @see index.php */ function responsive_comments_after() { do_action( 'responsive_comments_after' ); tha_comments_after(); } /** * Just before opening
* * @see sidebar.php */ function responsive_widgets_before() { do_action( 'responsive_widgets_before' ); tha_sidebars_before(); } /** * Just after opening
* * @see sidebar.php */ function responsive_widgets() { do_action( 'responsive_widgets' ); tha_sidebar_top(); } /** * Just before closing
* * @see sidebar.php */ function responsive_widgets_end() { do_action( 'responsive_widgets_end' ); tha_sidebar_bottom(); } /** * Just after closing
* * @see sidebar.php */ function responsive_widgets_after() { do_action( 'responsive_widgets_after' ); tha_sidebars_after(); } /** * Just after opening * * @see footer.php */ function responsive_footer_bottom() { do_action( 'responsive_footer_bottom' ); tha_footer_bottom(); } /** * Just after closing
* * @see footer.php */ function responsive_footer_after() { do_action( 'responsive_footer_after' ); tha_footer_after(); } /** * Theme Options * * @see theme-options.php */ function responsive_theme_options() { do_action( 'responsive_theme_options' ); } /** * WooCommerce * * Unhook/Hook the WooCommerce Wrappers */ remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); add_action( 'woocommerce_before_main_content', 'responsive_woocommerce_wrapper', 10 ); add_action( 'woocommerce_after_main_content', 'responsive_woocommerce_wrapper_end', 10 ); function responsive_woocommerce_wrapper() { echo '
'; } function responsive_woocommerce_wrapper_end() { echo '
'; }