Guest User

Untitled

a guest
Mar 15th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function my_wc_theme_wrapper_start() {
  2.     echo '<div id="content"><div id="content-loja">';
  3. }
  4. add_action( 'woocommerce_before_main_content', 'my_wc_theme_wrapper_start', 10 );
  5.  
  6. function my_wc_theme_wrapper_end() {
  7.     echo '</div></div>';
  8. }
  9. add_action( 'woocommerce_after_main_content', 'my_wc_theme_wrapper_end', 10 );
Advertisement
Add Comment
Please, Sign In to add comment