我在我的網站的主頁和評論表格中有一個客戶評論部分。我需要在那裏顯示我的客戶意見,但不應該針對任何帖子。 我使用此代碼來顯示評論,但你知道它需要一個職位ID來獲得評論。WordPress的 - 在主頁上提交評論
<?php
$args = array(
'post_id' => 388
);
$comments = get_comments($args);
foreach($comments as $comment) :
?>
<div class="client-comment">
<span><a href="#"><?php comment_author(); ?></a></span>
<p><?php echo comment_text(); ?></p>
</div><!-- .client-comment -->
<?php endforeach; ?>
你是否查找過任何WordPress插件的評論? –
不,我不想爲此使用任何插件。 –