我的作者框代码有一个有趣的设置,但我无法弄清楚为什么不显示短代码。这显示在自定义帖子类型上,而不是普通帖子上(不确定这是否有所不同)。短代码是代码中唯一不起作用的部分。其他一切都很好。
function my_genesis_author_box( $output, $context, $pattern, $gravatar, $title, $description ) {
$twitter = get_author_posts_url( get_the_author_meta( 'ID' ), get_the_author_meta( 'user_nicename' ) );
$author_id=get_the_author_meta('ID');
$description = '<br/><a href="' . $twitter . '">More Mixes</a><br/>' . do_shortcode( '[mycred_my_rank user_id=$author_id]' );
$output = sprintf( $pattern, $gravatar, $title, $description );
return $output;
}