显示来自一个帖子评论WordPress阿贾克斯检索(wordpress showing commen

2019-09-16 19:17发布

我加载与阿贾克斯后。 该代码是

$(document).ready(function(){

    loadPostsFun = function(){
        $.ajax({
            url: "http://lab1.koalamedia.es/ajax/",
            //url: "/random/",
            success: function(response){
                $("#randomPost").html( response );
            }
        });
    };
    $("#another").click(function(){
        loadPostsFun();
        return false;
    });
});

响应由与此代码自定义模板生成:

<?php
    query_posts('showposts=1&orderby=rand');
    the_post();
    $args = array( 'numberposts' => 1, 'orderby' => 'date' );
    $rand_posts = get_posts( $args );
?>
<?php
    foreach( $rand_posts as $post ) :  setup_postdata($post);
?>

    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
      <?php if ( is_front_page() ) { ?>
        <h2 class="entry-title"><?php the_title(); ?></h2>
        <?php } else { ?>
          <h1 class="entry-title"><?php the_title(); ?></h1>
        <?php } ?>

         <div class="entry-content">
          <?php the_content(); ?>
          <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
        <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
        </div><!-- .entry-content -->
      </div><!-- #post-## -->

      <?php 

        //comments_template( '', true ); //this doesn't work
        comment_form(); 
        //wp_list_comments(''); //this doesn't work

      ?>
<?php endforeach; ?>

Ajax请求的作品,但意见并不show.All后的数据是存在的。 我怎样才能显示评论?

既不comments_template或wp_list_comments工作。

您可以查看演示或下载模板样本我已经做在这里

Answer 1:

没有太多的调整wp_list_comments()在评论模板(通常工作comments.php只)。

使用get_comments()通过后ID作为参数:

$comments = get_comments(array ( 'post_id' =>  $post->ID );
if ( $comments )
{
    foreach ( $comments as $comment )
    {
        print "<li>$comment->comment_author<br>$comment->comment_content</li>";
    }
}


Answer 2:

我已经找到了问题,我忘了设定的全局变量:

global $withcomments;

我使用

$withcomments = true; 
comments_template();

但没有全球没有奏效。

现在就像正常的意见做。



文章来源: wordpress showing comments from a post retrieved with ajax