用代碼讓wordpress媒體庫有獨立分類
一般來講,媒體庫沒有分類,其實挺亂的。
而且有時候若是按文章分類,文章若很多,真是眼花撩亂。
現在我們有一個很好的代碼,解決這個問題。
開啟你主題的functions.php加入以下代碼
[cc lang="php"]
//讓媒體庫也有獨立分類
function ludou_create_media_category() {
$args = array(
'label' => '媒體分類',
'hierarchical' => true,
'show_admin_column' => true,
'show_ui' => true,
'query_var' => true,
'rewrite' => true,
);
register_taxonomy( 'attachment_category', 'attachment', $args );
}
add_action( 'init', 'ludou_create_media_category' );
[/cc]