Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if( ! function_exists( 'videotube_set_video_category_columns' ) ){
- /**
- * Set the video category columns
- * @param int $columns
- * @return number
- */
- function videotube_set_video_category_columns( $columns ) {
- if( is_tax( 'categories' ) || is_tax( 'video_tag' ) || is_post_type_archive( 'video' ) || is_search() ){
- $columns = 4;
- }
- return $columns;
- }
- add_filter( 'mars_layout_columns' , 'videotube_set_video_category_columns', 10, 1 );
- }
Advertisement
Add Comment
Please, Sign In to add comment