我使用media-categories-2插件对我的媒体文件进行排序,但我没有在 page->insert media modal 窗口中对我的媒体文件进行排序,我找不到为此所需的插件。请帮我
问问题
396 次
1 回答
0
我也一直在试图弄清楚如何做到这一点。我已经使用functions.php中的这些片段http://sumtips.com自己创建了类别
add_action('init', 'create_media_categories');
function create_media_categories() {
$labels = array(
'name' => 'Media Category'
);
$args = array(
'labels' => $labels,
'public' => true
);
register_taxonomy('imagetype', 'attachment', $args);
}
之后,我想出了如何在“插入媒体”框中创建一个新选项:
function custom_media_upload_tab_name( $tabs ) {
$newtab = array( 'tab_slug' => 'Your Tab Name' );
return array_merge( $tabs, $newtab );
}
add_filter( 'media_upload_tabs', 'custom_media_upload_tab_name' );
function custom_media_upload_tab_content() {
// I haven't gotten to this part yet
}
add_action( 'media_upload_tab_slug', 'custom_media_upload_tab_content' );
当我弄清楚下一部分时,我会更新它!
于 2013-03-23T18:10:50.307 回答