步骤
在主题的function.php处加入以下短代码
function github($atts,$content=null,$code=""){
$return = '<iframe frameborder="0" scrolling="0" allowtransparency="true" src="https://api.2heng.xin/github-card/?repo=';
$return .= $content;
$return .= '" width="400" height="200" style="margin-left: 50%; transform: translateX(-50%);"></iframe>';
return $return;
}
add_shortcode('github','github');