管理者パネルで投稿の作成者としてサブスクライバーを選択しますか?


16

管理者で投稿の作成者である購読者を選択できるようにしたいので、投稿を書いたように名前が表示されますが、追加の権限を与えたくありません(ログインできる場合は、アクセスできるのは彼らのプロフィール)。

役割と機能を変更せずにこれを行う簡単な方法はありますか?

ありがとう

回答:


17

これは、私が同様の状況で書いた単純なハックです。投稿/ページの編集/追加のドロップダウンにすべてが表示さSubscribersれ、Authorそこから必要なものを選択できます。私はそれがあなたのために働くはずだと思う...

add_filter('wp_dropdown_users', 'MySwitchUser');
function MySwitchUser($output)
{

    //global $post is available here, hence you can check for the post type here
    $users = get_users('role=subscriber');

    $output = "<select id=\"post_author_override\" name=\"post_author_override\" class=\"\">";

    //Leave the admin in the list
    $output .= "<option value=\"1\">Admin</option>";
    foreach($users as $user)
    {
        $sel = ($post->post_author == $user->ID)?"selected='selected'":'';
        $output .= '<option value="'.$user->ID.'"'.$sel.'>'.$user->user_login.'</option>';
    }
    $output .= "</select>";

    return $output;
}

この背後にあるトリックは、このページを送信すると、WPは$ _POST配列のこのドロップダウンから$ user-> IDのみを読み取り、それを投稿の著者として割り当てることです。そして、それはあなたが望むものです!


本当にありがとう!まさに私が必要なもの!$ users = get_users();を変更する必要がありました。それ以外の場合、他のロールを持つユーザーは表示されませんでした
fxfuture

どういたしまして!:)実際に私はカスタムロールにそれを使用していたので、パラメータ...喜んで助けてくれました!
ラトウィックガンガード

私はこれに関する小さな問題を発見しました-ポストエディットページを再訪すると、ドロップダウンのデフォルトは管理者になります。そのため、著者を再選択せずに変更を加えて保存すると、著者が管理者に変更されます。これを修正する方法はありますか?
fxfuture

はい、この投稿の著者を取得し、どのユーザーが著者に一致するかを確認し、そのオプションを選択したままにします。
ラトウィックガンガード

2
印刷してみglobal $post...変数を
Rutwick Gangurdeに

13

WordPress 4.4.0以降、wp_dropdown_users_argsフィルターを使用できるようになりました。コードははるかに簡単になりました。

add_filter( 'wp_dropdown_users_args', 'add_subscribers_to_dropdown', 10, 2 );
function add_subscribers_to_dropdown( $query_args, $r ) {

    $query_args['who'] = '';
    return $query_args;

}

3
これは正しい/受け入れられた答えでなければなりません。Codexから直接:developer.wordpress.org/reference/hooks/wp_dropdown_users_args/…–
AndyWarren

2

これは@brasofiloと同様のアプローチです。ただし、クイック編集ではなく、投稿の編集画面でのみ機能し、すべてのユーザー(作成者と購読者だけでなく)が含まれます。

/* Remove Author meta box from post editing */
function wpse50827_author_metabox_remove() {
    remove_meta_box('authordiv', 'post', 'normal');
}
add_action('admin_menu', 'wpse50827_author_metabox_remove');


/* Replace with custom Author meta box */
function wpse39084_custom_author_metabox() {  
    add_meta_box( 'authordiv', __('Author'), 'wpse39084_custom_author_metabox_insdes','post');  
 } 
add_action( 'add_meta_boxes', 'wpse39084_custom_author_metabox');  


/* Include all users in post author dropdown*/
/* Mimics the default metabox http://core.trac.wordpress.org/browser/trunk/wp-admin/includes/meta-boxes.php#L514 */
function wpse39084_custom_author_metabox_insdes() {
      global $user_ID;
      global $post;
      ?>
      <label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label>

      <?php
        wp_dropdown_users( array(
             'name' => 'post_author_override',
             'selected' => empty($post->ID) ? $user_ID : $post->post_author,
             'include_selected' => true
        ) );
}

これはデフォルトの作成者メタボックスに似てますが、呼び出しwp_dropdown_userswho=>'editors'引数を省略します。デフォルトは、呼び出しユーザーである他の唯一の値です。


ステファン、ありがとう。Rutwickのソリューションは既にCPTで動作しているため、最終的には使用しましたが、回答に感謝します:)
fxfuture

グローバル$ postを追加。投稿を編集するときに既存の作成者を取得していなかったため、実際の機能に追加されましたが、常に投稿作成者としての役割を果たしました。とても腹が立ちます。
ダニエルデカイ

1

それを行うためのより良い方法...

add_filter('wp_dropdown_users', 'MySwitchUser');
function MySwitchUser()
{
    global $post; // remove if not needed
    //global $post is available here, hence you can check for the post type here
    $users = get_users('role=subscriber');

    echo'<select id="post_author_override" name="post_author_override" class="">';

    echo'<option value="1">Admin</option>';

    foreach($users as $user)
    {
        echo '<option value="'.$user->ID.'"';

        if ($post->post_author == $user->ID){ echo 'selected="selected"'; }

        echo'>';
        echo $user->user_login.'</option>';     
    }
    echo'</select>';

}

私にはうまくいきません:常に管理者アカウントが投稿の新しい作成者になることを提案するため、ユーザーが実際に投稿を更新することは非常に難しくなります(そして自動的に編集権限を失います)。
ダニエルデカイ

1

これは、@ Innateがコメント(解決策)で彼自身の質問にリンクしたコードです。WP3.3.2(関数wpse39084)で少し調整してテストしました。投稿の編集とクイック編集で購読者を表示します。

また、管理を容易にするために、Publishアクションメタボックス内でAuthorメタボックスを移動するためのいくつかのアクション(関数wpse50827)が追加されました。

すべてが投稿関連で、ページもCPTもありません...

foreach( array( 'edit.php', 'post.php' ) as $hook )
    add_action( "load-$hook", 'wpse39084_replace_post_meta_author' );       

/* Show Subscribers in post author dropdowns - edit and quickEdit */
function wpse39084_replace_post_meta_author()
{
    global $typenow;
    if( 'post' != $typenow )
        return;

    add_action( 'admin_menu', 'wpse50827_author_metabox_remove' );
    add_action( 'post_submitbox_misc_actions', 'wpse50827_author_metabox_move' );
    add_filter( 'wp_dropdown_users', 'wpse39084_showme_dropdown_users' );
}

/* Modify authors dropdown */
function wpse39084_showme_dropdown_users( $args = '' )
{
    $post = get_post();
    $selected = $post->post_author;
    $siteusers = get_users( 'orderby=nicename&order=ASC' ); // you can pass filters and option
    $re = '';
    if( count( $siteusers ) > 0 )
    {
        $re = '<select name="post_author_override" id="post_author_override">';
        foreach( $siteusers as $user )
        {
            $re .= '<option value="' . $user->ID . '">' . $user->user_nicename . '</option>';
        }
        $re .= '</select>';
        $re = str_replace( 'value="' . $selected . '"', 'value="' . $selected . '" selected="selected"', $re );
    }
    echo $re;
}

/* Remove Author meta box from post editing */
function wpse50827_author_metabox_remove()
{
    remove_meta_box( 'authordiv', 'post', 'normal' );
}


/* Move Author meta box inside Publish Actions meta box */
function wpse50827_author_metabox_move()
{
    global $post;

    echo '<div id="author" class="misc-pub-section" style="border-top-style:solid; border-top-width:1px; border-top-color:#EEEEEE; border-bottom-width:0px;">Author: ';
    post_author_meta_box( $post );
    echo '</div>';
}

1
おかげでブラソフィロ。Rutwickのソリューションは既にCPTで動作しているため、最終的には使用しましたが、回答に感謝します:)
fxfuture

0

私はここで受け入れられた答えと同様のことをしましたが、管理者と私の場合はカスタムの「プロデューサー」の役割を一緒に見せたいだけでした。

add_filter('wp_dropdown_users', 'custom_author_select');
function custom_author_select($output){

    //global $post is available here, hence you can check for the post type here
    $admins = get_users('role=administrator');
    $producers = get_users('role=producer');
    $users = array_merge($admins, $producers);

    $output = "<select id=\"post_author_override\" name=\"post_author_override\" class=\"\">";

    //Leave the admin in the list
    $output .= "<option value=\"1\">Admin</option>";

    foreach($users as $user){
        $sel = ($post->post_author == $user->ID)?"selected='selected'":'';
        $output .= '<option value="'.$user->ID.'"'.$sel.'>'.$user->user_login.'</option>';
    }

    $output .= "</select>";

    return $output;
}

0

これは、「cpt_slug」をカスタム投稿タイプのスラッグに置き換えるクイック編集のエラーを回避するための解決策になる可能性があります

add_filter('wp_dropdown_users', 'MySwitchUser');

function MySwitchUser($output)
{
    global $typenow;
if ((is_edit_page('edit') && "cpt_slug" == $typenow)||(is_edit_page('new') && "cpt_slug" == $typenow)){
    global $post;
    $users = get_users();
    $output = "<select id=\"post_author_override\" name=\"post_author_override\" class=\"\">";   
    foreach($users as $user)
    {
        $sel = ($post->post_author == $user->ID)?"selected='selected'":'';
        $output .= '<option value="'.$user->ID.'"'.$sel.'>'.$user->user_login.'</option>';
    }
    $output .= "</select>";   
} 
return $output;
}



function is_edit_page($new_edit = null){
    global $pagenow;
    if (!is_admin()) return false;
    if($new_edit == "edit")
        return in_array( $pagenow, array( 'post.php',  ) );
    elseif($new_edit == "new") 
        return in_array( $pagenow, array( 'post-new.php' ) );
    else 
        return in_array( $pagenow, array( 'post.php', 'post-new.php' ) );
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.