Sakurairo主题添加github卡片功能

发布于 2021-05-20  742 次阅读


步骤

在主题的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');

用法

用[github]作者名/仓库名[/github]