私はメディアライブラリ内の画像をグループ化する方法を探しています。
私は写真ポートフォリオサイトを開発しています。すべての画像をメディアライブラリにアップロードしました。それらを管理しやすくするために画像をグループ化する方法が必要です。
現時点で私はただ画像の長いリストを持っています。
添付ファイル自体は投稿と同じです。ですから、tham meta_valuesを与えるか、thamに分類法を追加することを考えることができます。私はいつも最初の方法を使っていました...これはこの関数がどのように機能するかの簡単な例です...
add_filter("attachment_fields_to_edit", "afields_to_edit", 10, 2);
add_filter("attachment_fields_to_save", "afields_to_save", 10, 2);
function afields_to_save($post, $attachment){
$parentPost = get_post($post['post_parent']);
/*************************************************************
// Roles
*************************************************************/
if (isset($_POST['___attachments'][$post['ID']]['type'])
&& trim($_POST['___attachments'][$post['ID']]['type']) != ""){
$type = $_POST['___attachments'][$post['ID']]['type'];
update_post_meta($post['ID'], '_type', $type);
} else {
delete_post_meta($post['ID'], '_type');
}
return $post;
}
function afields_to_edit($form_fields, $post){
$parentPost = get_post($post->post_parent);
/***********************************************************************
Roles
***********************************************************************/
$form_fields["roles"]["label"] = "File Role";
$form_fields["roles"]["input"] = "html";
$html .= "<select name='___attachments[".$post->ID."][type]' style='width:95%;'>";
$html .= "<option value=''>Default Role</option>";
$roles = apply_filters('roles_sidebar', array(), $post, $parentPost);
if (is_array($roles) && count($roles) > 0){
foreach($roles as $key=>$role){
$html .= "<option value='".$key."' ".$role['select'].">".$role['name']."</option>";
}
}
$html .= "</select>";
$form_fields["roles"]["html"] = $html;
return $form_fields;
}
私はあなたがこのように仕事を続けることができると思います...