繁体   English   中英

WP评论未正确发布

[英]WP Comments Not Posting Correctly

我一直在从头开始开发自定义wordpress主题,并且我的comments.php文件遇到了一个小问题。

https://gist.github.com/phillipdews/dcebfec2016a93bd0169

我认为问题出在该文件的第44行,因为当我尝试在博客上发表评论时,无论是否登录,都可以通过以下方式进行评论:

www.mydomain.com/postlink/wp-comments-post.php

自然而然,它需要去:

www.mydomain.com/wp-comments-post.php

UPDATE

这就是我决定要做的! 我再次从头开始,并已将我的comments.php文件编码为:

<div id="comments">
    <?php if ( post_password_required() ) : ?>
    <p>This post is password protected. Enter the password to view and comments</p>
</div>
<?php 
        return;
    endif;
?>
<?php if ( have_comments() ) : ?>
<ol>
    <?php wp_list_comments ( array( 'callback' => 'BRUM_Theme_comment') ); ?>
</ol>
<?php
    elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<p>Comments are closed</p>
<?php endif; ?>
<?php comment_form(); ?>
</div>

然后,我将此代码片段添加到我的functions.php文件中! 到目前为止,这已经使我的评论出现了,人们也可以在我的博客文章中发表评论! 但到目前为止,“回复”按钮尚未呈现。

<?php
function BRUM_Theme_comment( $comment, $args, $depth ){
    $GLOBALS['comment'] = $comment;
    ?>
    <?php if ( $comment->comment_approved == '1'): ?>
    <li>
        <article id="comment-<?php comment_ID() ?>">
            <?php echo get_avatar( $comment ); ?>
            <h4>
                <?php comment_author_link() ?>
            </h4>
            <time><a href="#comment-<?php comment_ID() ?>" pubdate><?php comment_date() ?> at <?php comment_time() ?></a></time>
            <?php comment_text() ?>
        </article>
        <?php endif;
}

到此为止! 一旦使“回复”按钮正常工作,我将修改代码!

尝试这个:

<div id="respond">

<?php

    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
        die ('Please do not load this page directly. Thanks!');

    if ( post_password_required() ) { ?>
        This post is password protected. Enter the password to view comments.
    <?php
        return;
    }
?>

<?php if ( have_comments() ) : ?>

    <h2 id="comments"><?php comments_number('No comments', 'One comment', '% Comments' );?></h2>

    <div class="navigation">
        <div class="next-posts"><?php previous_comments_link() ?></div>
        <div class="prev-posts"><?php next_comments_link() ?></div>
    </div>

    <ol class="commentlist">
        <?php wp_list_comments(); ?>
    </ol>

    <div class="navigation">
        <div class="next-posts"><?php previous_comments_link() ?></div>
        <div class="prev-posts"><?php next_comments_link() ?></div>
    </div>

 <?php else : // this is displayed if there are no comments so far ?>

    <?php if ( comments_open() ) : ?>
        <!-- If comments are open, but there are no comments. -->

     <?php else : // comments are closed ?>
        <p>Comments are closed.</p>

    <?php endif; ?>

<?php endif; ?>

<?php if ( comments_open() ) : ?>



    <h2><?php comment_form_title( 'Leave an reply', 'Leave a reply in %s' ); ?></h2>
    <div class="cancel-comment-reply">
        <?php cancel_comment_reply_link(); ?>
    </div>

    <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
        <p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p>
    <?php else : ?>
<br class="c" />

    <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

        <?php if ( is_user_logged_in() ) : ?>

            <p>Logged as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out &raquo;</a></p>

        <?php else : ?>


            <div>
                <input type="text" value="Name" onblur="if (this.value == '') {this.value = 'Name';}"  onfocus="if (this.value == 'Name')   {this.value = '';}" name="author" id="author" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
      </div>

            <div>
                <input type="text" value="Email" onblur="if (this.value == '') {this.value = 'Email';}"  onfocus="if (this.value == 'Email')   {this.value = '';}" name="email" id="email" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
            </div>

            <div>
                <input type="text" value="Website" onblur="if (this.value == '') {this.value = 'Website';}"  onfocus="if (this.value == 'Website')   {this.value = '';}" name="url" id="url" size="22" tabindex="3" />
            </div>  

        <?php endif; ?>

<br />
        <div>
            <textarea name="comment" id="comment" cols="58" rows="10" tabindex="4"></textarea>
        </div>
<br class="c" />
        <div>

        <input name="submit" type="submit" id="submit" tabindex="5" value="Send" />
            <?php comment_id_fields(); ?>
      </div>

        <?php do_action('comment_form', $post->ID); ?>

    </form>

    <?php endif; // If registration required and not logged in ?>

</div>

<?php endif; ?>

自3.1以来的任何Wordpress版本中,这都可以解决您的问题。 不要忘记将此代码放在模板文件夹(comments.php)中

乔布斯(Jos Lucas)哥们做到了! 我不得不稍微调整一下代码,并从OL中删除该类,并调整我的CSS,因为这使化身100%大且模糊! 所以这就是我对CSS代码所做的全部工作,以使注释的样式更好:

#respond {float: left;}
#respond img {width: auto; height: auto; float: left; margin-right: 4px; border: 1px solid #aab59a; padding: 1px; border-radius: 10px;}
#respond ol li { background: #f1f1f1; margin:10px 0;padding:8px;border:2px solid #ccc;font-style:normal;list-style: none; border-radius: 10px;}

这也是一个不错的功能,人们可以将它们的functions.php文件添加到评论者姓名的回复链接中:

/*
 * Change the comment reply link to use 'Reply to &lt;Author First Name>'
 */
function add_comment_author_to_reply_link($link, $args, $comment){

    $comment = get_comment( $comment );

    // If no comment author is blank, use 'Anonymous'
    if ( empty($comment->comment_author) ) {
        if (!empty($comment->user_id)){
            $user=get_userdata($comment->user_id);
            $author=$user->user_login;
        } else {
            $author = __('Anonymous');
        }
    } else {
        $author = $comment->comment_author;
    }

    // If the user provided more than a first name, use only first name
    if(strpos($author, ' ')){
        $author = substr($author, 0, strpos($author, ' '));
    }

    // Replace Reply Link with "Reply to &lt;Author First Name>"
    $reply_link_text = $args['reply_text'];
    $link = str_replace($reply_link_text, 'Reply to ' . $author, $link);

    return $link;
}

add_filter('comment_reply_link', 'add_comment_author_to_reply_link', 10, 3);

希望其他人发现它有用,并再次感谢它的出色表现!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM