用户评论显示在wordpress页面上

时间:2016-10-21 00:01:35

标签: wordpress comments spam

希望获得类似于此页面的内容,用户可以在表单字段中输入思想,然后在提交时直接发布到页面上。

http://hcma.ca/

使用wordpress评论最适合这个吗?或者某种方式发送表单提交以在页面上填充转发器高级自定义字段。任何人都可以建议如何最好地实现这一目标吗?

还想知道垃圾邮件。上面的网站没有验证码或类似的(据我所知)。与此有什么关系?

谢谢!

1 个答案:

答案 0 :(得分:0)

如果您不想使用付费插件,可以创建新的自定义帖子类型,然后在您想要的页面上显示结果。您应该遵循此tutorial here

简而言之:

创建新的帖子类型:

// Our custom post type function
function create_posttype() {

    register_post_type( 'movies',
    // CPT Options
        array(
            'labels' => array(
                'name' => __( 'Movies' ),
                'singular_name' => __( 'Movie' )
            ),
            'public' => true,
            'has_archive' => true,
            'rewrite' => array('slug' => 'movies'),
        )
    );
}
// Hooking up our function to theme setup
add_action( 'init', 'create_posttype' );

在页面中显示结果:

<?php 
$args = array( 'post_type' => 'movies', 'posts_per_page' => 10 );
$the_query = new WP_Query( $args ); 
?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class="entry-content">
<?php the_content(); ?> 
</div>
<?php wp_reset_postdata(); ?>
<?php else:  ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>

您可以使用此免费插件添加Google reCaptcha以避免垃圾邮件