в functions.php подключите стили вот так
function prefix_styles_and_scripts(){
$ver = 1;
wp_register_style( $handle, $src, $deps, $ver, $media );
if(is_page( id )){
wp_enqueue_style( $handle );
}
}
add_action( 'wp_enqueue_scripts', 'prefix_styles_and_scripts' );