Nasıl bir başlık atacağımı bile bilemedim kusura bakmayın

Temamdaki bir kodlama şu şekilde;
    <div id="featured">
    <h2>Hede Hödö</h2>
    <div class="wrapper">
    <?php
    $tmp_query = $wp_query;
    query_posts('showposts=5&cat=' . get_cat_ID(dp_settings('featured')));
    if (have_posts()) :
    while (have_posts()) : the_post(); 
    ?>
    <div class="featured">
Kod bu haliyle çalışıyor sorun yok

Ancak koddaki cat= bölümüne cat=4 şeklinde kategori Id sini veriyorum çalışmıyor. Ben sadece 4 numaralı kategorinin yazılarını göstermek istiyorum.

Sorun ne olabilir ?