is_home() && $query->is_main_query() ) { $exclude_categories = photomania_get_option( 'exclude_categories' ); if ( ! empty( $exclude_categories ) ) { $cats_exploded = explode( ',', $exclude_categories ); $cats = array(); if ( ! empty( $cats_exploded ) ) { foreach ( $cats_exploded as $c ) { if ( absint( $c ) > 0 ) { $cats[] = absint( $c ); } } if ( ! empty( $cats ) ) { $string_exclude = ''; $string_exclude = '-' . implode( ',-', $cats ); $query->set( 'cat', $string_exclude ); } } } } return $query; } endif; add_filter( 'pre_get_posts', 'photomania_exclude_category_in_blog_page' );