我正在尝试显示评论作者的获得的徽章,并显示以下短代码[mycred_my_badges user_id=""]
。
我正在对名为woodiscuz的插件进行小的更改,这是我的代码:
$comment_post_author_id = get_comment_author( $comment->comment_ID );
$comment_author = get_user_by('login', '' . $author . '');
$comment_author_id = $comment_author->ID;
$shortcode = '[mycred_my_badges user_id="' . $comment_author_id . '"]';
$output .= '<div class="comment-author-badges">' . do_shortcode($shortcode) . ' ' . print $shortcode . ' ' . '</div></div>';
此代码返回[mycred_my_badges user_id=""]
,显然我在这里缺少内容。
我是PHP的新手,所以对它的任何帮助都将很棒。
干杯, D