快速问题。我想为每个评论添加一个“共享”按钮,以便可以在Facebook上共享一个评论及其内容。 我已经用自定义html的回调函数设置了自己的comment.php。 因此已经可以回显所有评论内容(URL,作者,日期等),但是在分享时,facebook始终会抓取帖子内容。尝试使用打开的图形Facebook html和addanyshare插件添加共享按钮。没有成功。我错过了一个特殊的插件吗?
如果你们需要任何其他信息,请告诉我。
感谢您的提前帮助。
最佳 迈克尔
functions.php-为自定义html添加了此代码,为社交媒体插件添加了简码
function mytheme_comment($comment, $args, $depth) {
if ( 'div' === $args['style'] ) {
$tag = 'div';
$add_below = 'comment';
} else {
$tag = 'li';
$add_below = 'div-comment';
}?>
<<?php echo $tag; ?> <?php comment_class( empty(
$args['has_children'] ) ? '' : 'parent' ); ?> id="comment-<?php
comment_ID() ?>"><?php
if ( 'div' != $args['style'] ) { ?>
<div id="div-comment-<?php comment_ID() ?>" class="comment-body">
<?php
} ?>
<?php
if ( $comment->comment_approved == '0' ) { ?>
<em class="comment-awaiting-moderation"><?php _e( 'Your
comment is awaiting moderation.' ); ?></em><br/><?php
} ?>
<?php comment_text(); ?>
<?php echo do_shortcode("[TheChamp-Sharing]"); ?>
<div class="comment-author vcard">- <?php
if ( $args['avatar_size'] != 0 ) {
echo get_avatar( $comment, $args['avatar_size'] );
}
printf( __( '<cite class="fn">%s</cite> <span
class="says">says:</span>' ), get_comment_author_link() ); ?> / <?php
/* translators: 1: date, 2: time */
printf(
__('%1$s'),
get_comment_date()
); ?>
</div>
<div class="share">
</div>
<div class="reply"><?php
comment_reply_link(
array_merge(
$args,
array(
'add_below' => $add_below,
'depth' => $depth,
'max_depth' => $args['max_depth']
)
)
); ?>
</div><?php
if ( 'div' != $args['style'] ) : ?>
</div><?php
endif;
}
comments.php
<?php wp_list_comments( 'type=comment&style=div&callback=mytheme_comment' ); ?>