我正在寻找以下github链接的等效api调用:
基本上我想以这种格式查询API:
$tags = get_the_tags();
if( current_user_can('author') || current_user_can('editor') || current_user_can('administrator') ){
if ($tags > 0){
foreach ($tags as $tag){
$list_tag .= "{$tag->name}, ";
}
$tag_edit = '
<form method="POST">
<textarea class="textarea_post_tag" name="post_get_tags" id="RRR">
'.$list_tag.'
</textarea>
<input type="submit" value="Upgrade">
</form>
';
echo $tag_edit ;
}}
if ($_POST['post_get_tags']){
wp_set_post_tags( $post->ID, $_POST['post_get_tags'] );
}
而且我希望至少获得与该文件关联的所有sha哈希(在实际调用中提到的sha之前)。我想针对每个版本自动查找内容。
感谢您的帮助。