2. functions.php dosyasına
add_action( 'pre_get_posts', 'wpsites_exclude_tagged_posts' );
function wpsites_exclude_tagged_posts( $query ) {
if ( $query->is_main_query() && $query->is_home() ) {
$query->set( 'tag__not_in', array( 305 ) );
}
}
kodunu eklersin. (305 yerine manset etiketinin id'si)
3. manseti ekleyeceğin yere
query_posts(array(
'posts_per_page' => 3,
'post_type' => 'post',
'tag_id' => 305
));
while (have_posts()):
the_post();
?>
(loop buraya)
endwhile;
wp_reset_query();
?>
kodunu girersin.
'posts_per_page' => kaç tane manset olacak.
'tag_id' => manset etiketinin id'si