@bekirbasar; şu şekilde deneyebilir misiniz?
<?php
if(get_option('beta_sondk') == "true")
{
query_posts("showposts=1&orderby=date&cat=".get_option("beta_sondkid"));
while(have_posts()): the_post();
echo '<div class="grid_12 first">';
echo '<div class="ssondakika"><a class="all" title="'.get_the_title().'" href="'.get_the_permalink().'">'.get_the_title().'</a>';
echo '<a class="sd_baslik" target="_blank" title="'.get_the_title().'" href="'.get_the_permalink().'">'.get_the_title().'</a>';
echo '</div></div>';
endwhile;
}
else
{
echo '';
}