ForsBey adlı üyeden alıntı: mesajı görüntüle
query_posts('p='.get_option('oyuncular_id'));
<?php
echo query_posts('p='.get_option('oyuncular_id'));  
while (have_posts()) : the_post();
endwhile;
?>
<?php
query_posts('p='.get_option('oyuncular_id'));  
while (have_posts()) : the_post();
endwhile;
?>
yukarıdaki iki yöntemde işe yaramadı. İki tırnak içinde olmalı çünkü el ile yazınca konuyu çağırıyor.

<?php
query_posts('p=3565'.get_option('oyuncular_id'));  
while (have_posts()) : the_post();
endwhile;
?>