Guest User

Untitled

a guest
May 25th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. function woo_conditionals() {
  2.  
  3. // Video Embed
  4. if( is_single() && ( get_post_type() != 'portfolio' ) || is_home() || is_front_page() || is_ar ) {
  5. add_action( 'woo_post_inside_before', 'canvas_get_embed' );
  6. }
  7.  
  8. // Post More
  9. if ( ! is_singular() && ! is_404() || is_page_template( 'template-blog.php' ) || is_page_template( 'template-magazine.php' ) ) {
  10. add_action( 'woo_post_inside_after', 'woo_post_more' );
  11. }
  12.  
  13. // Tumblog Content
  14. if ( get_option( 'woo_woo_tumblog_switch' ) == 'true' ) {
  15. add_action( 'woo_tumblog_content_before', 'woo_tumblog_content' );
  16. add_action( 'woo_tumblog_content_after', 'woo_tumblog_content' );
  17. }
  18.  
  19. }
Add Comment
Please, Sign In to add comment