Şu anda ajax kullanarak tek bir gönderi yüklüyorum. Yükleme sonrası tamam olsa da, yorumları yüklemek için alamıyorum. İşte benim kod:
Yazı yüklemek için benim javascript:
<script>
$(".view_post").click(function(e) {
e.preventDefault();
postid = $(this).attr("rel");
$.ajax({
url:"/wp-admin/admin-ajax.php",
type:'POST',
data:'action=posts_open&postid='+postid,
success: function(html){
$("#b_contentwrapper").empty();
$("#b_contentwrapper").append(html);
}
});
});
</script>
Javascript, function.php dosyasından şu şekilde geçer:
function implement_posts()
{
//<?php
get_template_part( 'loop', 'single' );
die();
}
Şimdi burada aslında benim posta içeriği yüklemek kodu:
<?php
$linkid = "p=".$_POST["postid"];
$posti = new WP_Query($linkid);
$posti->the_post();
echo "Time: ";
the_time('F jS, Y');
echo "<br />";
the_category(', ');
echo "<br />";
the_title();
echo "<br />";
the_content();
echo "<br />";
comment_form();
?>
</div>
<?php if (have_comments()) {
echo "Comments ok";
}
else
{
echo "No comments";
}
?>
Şimdi, yorum içeren gönderiler için bile "Yorum yok" görüntüleniyor. Diğer her şey düzgün çalışıyor. Biri bana yardım edebilir mi?
Teşekkür ederim.
$linkid = "p=".$_POST["postid"];
verry sql enjeksiyon güvenli değildir. wordpess bunu kontrol etse de kendiniz yapmak isteyebilirsiniz.