functions.php

/* 카테고리 제외 */
function exclude_category( $query ) {
	if ( $query->is_home() && $query->is_main_query() ) {
		$query->set( 'cat', '-1787' ); //TIH
	}
}

add_action( 'pre_get_posts', 'exclude_category' );