0

wordpress で「好き嫌いカウンター」プラグインをダウンロードし、すべてのコメントに好き嫌いボタンを含めたいと考えています。

いいねボタンと嫌いなボタンのコードは次のとおりです。

<?php if(function_exists('like_counter_c')) { like_counter_c("Like"); } ?>
<?php if(function_exists('dislike_counter_c')) {dislike_counter_c("Dislike"); } ?>

私はそれをcomments.phpのさまざまな部分に配置しようとしましたが、コメントの上または下に配置し、必要に応じてすべてのコメントに配置するわけではありません。

どこに置くべきか誰にもわかりませんか?

以下は私の comments.php からのコードです:

<?php
// Do not delete these lines
    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
        die ('Please do not load this page directly. Thanks!');

    if ( post_password_required() ) { ?>
        <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
    <?php
        return;
    }
?>

<!-- You can start editing here. -->

<?php if (have_comments()) { ?>
  <div id="commentspost"><a name="commentspost"></a>
    <h2 class="title"><?php comment_type_count();?> <?php _e('Comments', 'wpzoom'); ?></h2>
    <ol class="normalComments"><?php wp_list_comments('type=all&avatar_size=60');?></ol>
    </div><!-- end #commentspost -->

<?php if ('closed' == $post->comment_status) : ?>
<?php endif; ?>

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

    <?php if ('open' == $post->comment_status) { ?>
        <!-- If comments are open, but there are no comments. -->
<div id="commentspost">
    <h2 class="title">0 <?php _e('Comments', 'wpzoom'); ?></h2>
  <p><?php _e('You can be the first one to leave a comment', 'wpzoom'); ?>.</p>
</div>
     <?php } else { // comments are closed ?>
        <!-- If comments are closed. -->
    <?php } ?>
<?php } ?>

<?php if ('open' == $post->comment_status) : ?>

<div id="respond">
<div class="cleaner">&nbsp;</div>
<div class="cancel-comment-reply"><p><?php cancel_comment_reply_link(); ?></p></div>

<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p><?php _e('You must be', 'wpzoom'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>"><?php _e('logged in', 'wpzoom'); ?></a> <?php _e('to post a comment.', 'wpzoom'); ?></p>
<?php else : ?>

<?php comment_form(); ?>

<?php if ( $user_ID ) : ?>

<p><?php _e('Logged in as', 'wpzoom'); ?> <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"><?php _e('Log out', 'wpzoom'); ?> &raquo;</a></p>

<?php endif; ?>
<div class="cleaner">&nbsp;</div>
<?php comment_id_fields(); ?>
<?php do_action('comment_form', $post->ID); ?>
</form>
<?php endif; // If registration required and not logged in ?>
</div>
<?php endif; // if you delete this the sky will fall on your head ?>

もちろん、これについて私が間違っていて、 loop.php に含める必要がある場合を除きますか?

前もって感謝します!

4

2 に答える 2

0

それほど単純ではありません。

この関数wp_list_commentsは投稿のすべてのコメントを一度に一覧表示するため、各コメントを変更するために行を直接挿入することはできません。

いくつかのオプションがあります:

  1. コメントを個別に取得できる他の方法でコメントを引き出す
  2. コメントコードを何らかの方法で保存し、編集して必要なものを挿入します
  3. これこれを確認してください。このwp_list_comments関数を使用すると、各コメントに適用されるコールバック関数を指定できます。私はあなたが必要なことをするためにそれらを使うことができると確信しています:)
于 2013-07-14T15:40:46.980 に答える
0

この関数wp_list_comments()はすべてのコメントを表示します。好きな/嫌いなボタンを表示するには、カスタム コールバック関数を作成する必要があります。ここを見てください。

于 2013-07-14T15:45:52.163 に答える