我使用media-categories-2插件来排序我的媒体文件,但我没有在页面中插入媒体文件 - >插入媒体模式窗口,我无法找到所需的插件。请帮帮我
答案 0 :(得分:0)
我一直在试图弄清楚如何做到这一点。我已经使用函数中的这些片段http://sumtips.com来自己创建类别.php
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' );
当我弄清楚下一部分时,我会更新它!