Ben bu işlevi vardır:
<?php
function getmypost($number)
{
query_posts('p=1828');
while (have_posts()) : the_post();
the_title('<h1>', '</h1>');
the_content();
endwhile;
}
?>
I need to make the 1828 as a variable I have tried this:
query_posts('\'p='. $number .'\'');
Ama çalışmıyor. Bu ne için doğru bir yol olurdu?