WordPressの寄稿者だって画像をUPしたい
WordPressの寄稿者だって画像をUPしたい、と思う人もいるかもしれない(思わないかもしれない)
で、対策を探したところ、フォーラムに記事が↓
Allow contributor to upload media
ようは、function.phpに以下を記述すればOKとのこと
<?php
if ( current_user_can(‘contributor’) && !current_user_can(‘upload_files’) )
add_action(‘admin_init’, ‘allow_contributor_uploads’);
function allow_contributor_uploads() {
$contributor = get_role(‘contributor’);
$contributor->add_cap(‘upload_files’);
}
なるほど!