diff --git a/views/wpfc-podcast-feed.php b/views/wpfc-podcast-feed.php index d483d8e..991b55f 100644 --- a/views/wpfc-podcast-feed.php +++ b/views/wpfc-podcast-feed.php @@ -162,7 +162,8 @@ $args['tax_query'][] = array( 'taxonomy' => $taxonomy, 'field' => is_numeric( $terms ) ? 'term_id' : 'slug', - 'terms' => is_numeric( $terms ) ? intval( $terms ) : false !== strpos( $terms, ',' ) ? array_map( 'sanitize_title', explode( ',', $terms ) ) : sanitize_title( $terms ), + 'terms' => is_numeric( $terms ) ? intval( $terms ) : + (false !== strpos( $terms, ',' ) ? array_map( 'sanitize_title', explode( ',', $terms ) ) : sanitize_title( $terms )), ); if ( count( $args['tax_query'] ) > 1 ) {