主页/WordPress笔记/博客文章/综合文章/如何允许用户向你的WordPress网站提交新闻/文章

如何允许用户向你的WordPress网站提交新闻/文章

Bug编译狮

Bug编译狮

要允许用户向你的WordPress网站提交新闻或文章,你可以按照以下步骤操作:

步骤1: 设置博客类型

首先,在WordPress后台,导航到“设置” > “博客”,选择“博客类型”。对于新闻类的博客,通常会提供一些预设的主题,如“新闻”、“活动日历”等。

步骤2: 配置发布者信息

确保在WordPress的“设置” > “发表者”中设置了正确的电子邮件地址和用户名,以便读者可以联系您。

步骤3: 创建文章模板

创建一个新的文章模板(如single.php),并添加适当的HTML结构来显示文章的内容。

<!-- single.php -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <header class="entry-header">
        <h1 class="entry-title"><?php the_title(); ?></h1>
    </header>

    <div class="entry-content">
        <?php the_content(); ?>
    </div>

    <!-- 添加任何其他插件的自定义元素 -->
</article>

步骤4: 安装和激活评论插件

安装并激活评论插件(例如:WPML、Yoast SEO)以增强用户体验。

步骤5: 管理文章发布权限

在WordPress的“编辑”菜单下,找到“管理文章”,然后为特定用户组赋予“发布文章”的权限。

示例代码与效果

假设我们有一个名为my_news的博客类型,用户想要创建一个关于他们最近旅行的文章。以下是实际的代码片段及其预期的效果:

HTML代码:

<?php 
if (have_posts()) : while (have_posts()) : the_post();
?>
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
        <header class="entry-header">
            <h1 class="entry-title"><?php the_title(); ?></h1>
        </header>

        <div class="entry-content">
            <?php the_content(); ?>
        </div>

        <!-- 附加任何额外的自定义元素 -->
    </article>
<?php endwhile; else: endif; ?>

效果说明:

当用户访问该页面时,他们会看到一个标题为“我的最新旅行”的文章列表。点击任何一个标题后,将跳转到单独的页面展示这篇文章的具体内容。

通过以上步骤,您的WordPress网站已经具备了接受用户提交新闻或文章的功能。这不仅提高了用户的参与度,也增强了网站的信息发布能力。

黑板前的Bug语法讲师

黑板前的Bug语法讲师

在WordPress中,用户可以向您的网站提交新闻或文章。以下是如何实现这一功能的步骤:

1. 创建一个新主题

首先,你需要创建一个新的主题来处理新闻和文章。这通常涉及到编辑器中的“模板”选项卡。

示例代码:

<!-- 新闻主题文件 -->
<?php get_header(); ?>
<div class="news">
    <?php while ( have_posts() ) : the_post(); ?>
        <h2><?php the_title(); ?></h2>
        <div class="content">
            <?php the_content(); ?>
        </div>
        <a href="<?php echo esc_url( get_permalink() ); ?>" class="read-more">Read More</a>
    <?php endwhile; ?>
</div>

<!-- 其他部分的HTML结构 -->

2. 添加一个插件

接下来,你需要添加一个插件来处理用户的投稿。你可以使用WordPress的评论插件(Comment Plugin)或者自定义评论表单插件(Custom Comment Form Plugin),两者都可以用来管理用户投稿。

示例代码:

// 使用评论插件
add_action('comment_form_after_title', 'custom_comment_form');

function custom_comment_form($form_id) {
    wp_nonce_field('my_comment_form_nonce');
?>
    <div class="comment-form">
        <!-- Your form fields here -->
    </div>
<?php
}

// 或者使用自定义评论表单插件
add_action('wp_head', 'custom_comment_form');

function custom_comment_form() {
    // 在这里添加自定义的表单字段和验证规则等。
}

3. 实现投稿处理逻辑

现在,你需要编写代码来处理用户提交的文章。这通常涉及到使用comments_post_status参数设置为publish以启用审核,然后检查投稿是否通过审核并将其发布到数据库中。

示例代码:

if (!current_user_can('edit_posts')) {
    return;
}

$comment = new WP_Comment();
$comment->comment_author_email = 'your-email@example.com';
$comment->comment_author_name = 'Your Name';

// 如果需要,还可以设置其他属性
$comment->comment_post_ID = $post->ID;

// 保存评论
comment_save_post($comment);

// 检查评论状态
if ($comment->status == 'approve') {
    // 发布评论
    $wpdb->query($wpdb->prepare("UPDATE comments SET status='publish' WHERE comment_ID=%d", $comment->comment_ID));
}

4. 设置投稿审核流程

为了确保只有合格的投稿被发布,你需要设置一个投稿审核流程。这可能包括阅读投稿内容、审查作者资格、以及可能的其他条件。

示例代码:


// 审核投稿
if (isset($_POST['submit'])) {
    if ($_POST['author'] && $_POST['content']) {
        $comment = new WP_Comment();
        $comment->comment_author_email = 'your-email@example.com';
        $comment->comment_author_name = 'Your Name';
        $comment->comment_post_ID = $post->ID;

        // ... 这里可以设置更多的检查条件

        $wpdb->query($wpdb->prepare("INSERT INTO comments (comment_author, comment_content, comment_author_email, comment_author_name, comment_date, comment_date_gmt, comment_type, comment_approved, comment_parent, comment_reply_to, comment_reply_to_type, comment_level, comment_lft, comment_rgt, comment_parent_comment_id, comment_parent_type, comment_parent_id, comment_parent_comment_post_ID, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_url, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment_parent_comment_author_name, comment_parent_comment_author_avatar, comment_parent_comment_author_url, comment_parent_comment_author_email, comment