سلام من می خواهم نظرات را در page خاصی نمایش بدم مثلا بگم id مربوط به page خاص نظراتش را نمایش بده
در ضمن این صفحه هم صفحه خارجی هست که درست شده و می خواهم اونجا نمایش بدم
contact.php
سلام من می خواهم نظرات را در page خاصی نمایش بدم مثلا بگم id مربوط به page خاص نظراتش را نمایش بده
در ضمن این صفحه هم صفحه خارجی هست که درست شده و می خواهم اونجا نمایش بدم
contact.php
http://wordpress.stackexchange.com/questions/3141/getting-post-comments-for-post-id-using-wp-query-and-a-custom-loop
http://www.nicolaskuttler.com/post/get-wordpress-comments-outside-of-wordpress/
<?php
global $wp_query;
$args = array(
'ID' => 12,
'status' => 'approve',
'order' => 'ASC'
);
$wp_query->comments = get_comments( $args );
wp_list_comments( );
}?>
از این استفاده کردم برای این که بتونم css اش رو کار کنم چکار کنم ؟
جایگزین تابع wp_list_comments
باید استایل مادر بدید!!!
<?php $args = array(
'walker' => null,
'max_depth' => ,
'style' => 'stylename',
'callback' => null,
'end-callback' => null,
'type' => 'comment', //all
'page' => ,
'per_page' => 10 ,
'avatar_size' => 32,
'reverse_top_level' => null,
'reverse_children' => );
<div class="commentlist"><?php wp_list_comments($args); ?></div>
?>
من دقیقا این رو داخل تم اضافه کردم
<?php
global $post,$wp_query;
$args = array(
'ID' => '997',
'status' => 'approve',
'order' => 'ASC'
);
$wp_query->comments = get_comments( $args );
wp_list_comments( );
//comment_form();
comments_template( '', true );
?>
حالا بخوام اون کد رو اضافه کنم چکار کنم ؟
کد بالا حنبه تکملی واسه تابع wp_list_comments داشت
استایل را باید برای کلاس commentlist تنظیم کنید
<?php
global $wp_query;
$args = array(
'ID' => 12,
'status' => 'approve',
'order' => 'ASC'
);
$wp_query->comments = get_comments( $args );
$args = array(
'walker' => null,
'max_depth' => ,
'style' => 'stylename',
'callback' => null,
'end-callback' => null,
'type' => 'comment', //all
'page' => ,
'per_page' => 10 ,
'avatar_size' => 32,
'reverse_top_level' => null,
'reverse_children' => );
<div class="commentlist"><?php wp_list_comments($args); ?></div>
?>