我正在用Wordpress开发一个网页。我的主题没有客户评论页面。所以我想手动添加一个页面来显示客户评论。它的工作方式应该是,客户可以先给出姓名和邮件,然后进行实际评论,然后再提交,以撰写评论。他提交后,评论必须显示在“评论”页面中。我需要任何相关帮助或任何有关我可以执行此操作的相关插件的建议。
答案 0 :(得分:0)
您可以为其使用自定义帖子类型。创建名称为“客户评论”的自定义帖子类型。您可以使用https://wordpress.org/plugins/custom-post-type-ui/插件来创建它。
此后,您需要创建归档文件-您的自定义posttype数据块(例如archive-customer_review.php)页面,并获取如下所示的自定义posttype数据:
<?php
$args = array(
'post_type'=> 'services',
'areas' => 'painting',
'order' => 'ASC'
);
$the_query = new WP_Query( $args );
if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();
?>