marstheme

Untitled

May 1st, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. if( ! function_exists( 'videotube_set_video_category_columns' ) ){
  2.  
  3.     /**
  4.      * Set the video category columns
  5.      * @param int $columns
  6.      * @return number
  7.      */
  8.  
  9.     function videotube_set_video_category_columns( $columns ) {
  10.  
  11.         if( is_tax( 'categories' ) || is_tax( 'video_tag' ) || is_post_type_archive( 'video' ) || is_search() ){
  12.             $columns = 4;
  13.         }
  14.  
  15.         return $columns;
  16.     }
  17.  
  18.     add_filter( 'mars_layout_columns' , 'videotube_set_video_category_columns', 10, 1 );
  19. }
Advertisement
Add Comment
Please, Sign In to add comment