Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. if ( class_exists('woocommerce') || class_exists('bbPress')){
  2. if ( is_account_page() || is_checkout() || is_cart() || is_woocommerce() || is_bbpress()){
  3. get_template_part('page-custom');
  4. }
  5. else {get_template_part('page-default');}
  6. }
  7.  
  8.  
  9. else {
  10. get_template_part('page-default');
  11. }
  12.  
  13. if (class_exists('woocommerce') == is_account_page() || is_checkout() || is_cart() || is_woocommerce()){
  14. get_template_part('page-woocommerce');
  15. }
  16. elseif ( class_exists('bbPress') == is_bbpress() ) {
  17. get_template_part('page-bbpress');
  18. }
  19. else {
  20. get_template_part('page-default');
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement