ana klasördeki index.php doyasını aç.aşağıdaki kodu <?php yazan satırın altına ekle. 1 olan yere gizlemk istediğin yazıların olduğu kategori numarasını yaz. (gizlemek istediğin yazıları aynı kategoriye koymalısın)(kategori numarasına kategorileri yönet kısmından bakabilirsin.)

 if ((empty($_GET['cat']))&&(!preg_match('/wp-admin/', $_SERVER['REQUEST_URI']))) $cat = '-1';
Alıntı
How do I hide a category from the front page (index.php) ?

You can exclude a category’s posts from appearing on index.php by adding the following code at the top of the my-hacks.php (my-hacks.php should exist, and my-hacks.php support should be enabled in Options -> Miscellaneous )after the “<?php ” line :

if ((empty($_GET['cat']))&&(!preg_match('/wp-admin/', $_SERVER['REQUEST_URI']))) $cat = '-1'; //Replace 1 with your category

This will prevent that category being displayed in the feeds etc as well, but the posts in the category will be displayed when someone tries to load the URL for that category.