我想在我的插件生成的页面上包含评论表单。我得到了想要附加评论的帖子id,但我无法使用任何Wordpress评论功能。
试图在我的插件页面中创建Wordpress循环,如下所示,但评论表单不会显示:
$args = array (\'post_type\'=> \'cpt\', \'p\' => $post_id );
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
comment_form();
endwhile; endif;
wp_reset_postdata();