ワードプレスのユーザーを自分の投稿とメディアアイテムのみを表示するように制限したい。以下のリンクにある手順に従って、自分の投稿とメディアアイテムのみを表示するようにユーザーを制限するプラグインを開発しました。
https://wordpress.stackexchange.com/a/34858/12615
// Show only posts and media related to logged in author
add_action('pre_get_posts', 'query_set_only_author' );
function query_set_only_author( $wp_query ) {
global $current_user;
if( is_admin() && !current_user_can('edit_others_posts') ) {
$wp_query->set( 'author', $current_user->ID );
add_filter('views_edit-post', 'fix_post_counts');
add_filter('views_upload', 'fix_media_counts');
}
}
// Fix post counts
function fix_post_counts($views) {
global $current_user, $wp_query;
unset($views['mine']);
$types = array(
array( 'status' => NULL ),
array( 'status' => 'publish' ),
array( 'status' => 'draft' ),
array( 'status' => 'pending' ),
array( 'status' => 'trash' )
);
foreach( $types as $type ) {
$query = array(
'author' => $current_user->ID,
'post_type' => 'post',
'post_status' => $type['status']
);
$result = new WP_Query($query);
if( $type['status'] == NULL ):
$class = ($wp_query->query_vars['post_status'] == NULL) ? ' class="current"' : '';
$views['all'] = sprintf(
'<a href="%1$s"%2$s>%4$s <span class="count">(%3$d)</span></a>',
admin_url('edit.php?post_type=post'),
$class,
$result->found_posts,
__('All')
);
elseif( $type['status'] == 'publish' ):
$class = ($wp_query->query_vars['post_status'] == 'publish') ? ' class="current"' : '';
$views['publish'] = sprintf(
'<a href="%1$s"%2$s>%4$s <span class="count">(%3$d)</span></a>',
admin_url('edit.php?post_type=post'),
$class,
$result->found_posts,
__('Publish')
);
elseif( $type['status'] == 'draft' ):
$class = ($wp_query->query_vars['post_status'] == 'draft') ? ' class="current"' : '';
$views['draft'] = sprintf(
'<a href="%1$s"%2$s>%4$s <span class="count">(%3$d)</span></a>',
admin_url('edit.php?post_type=post'),
$class,
$result->found_posts,
__('Draft')
);
elseif( $type['status'] == 'pending' ):
$class = ($wp_query->query_vars['post_status'] == 'pending') ? ' class="current"' : '';
$views['pending'] = sprintf(
'<a href="%1$s"%2$s>%4$s <span class="count">(%3$d)</span></a>',
admin_url('edit.php?post_type=post'),
$class,
$result->found_posts,
__('Pending')
);
elseif( $type['status'] == 'trash' ):
$class = ($wp_query->query_vars['post_status'] == 'trash') ? ' class="current"' : '';
$views['trash'] = sprintf(
'<a href="%1$s"%2$s>%4$s <span class="count">(%3$d)</span></a>',
admin_url('edit.php?post_type=post'),
$class,
$result->found_posts,
__('Trash')
);
endif;
}
return $views;
}
// Fix media counts
function fix_media_counts($views) {
global $wpdb, $current_user, $post_mime_types, $avail_post_mime_types;
$views = array();
$count = $wpdb->get_results( "
SELECT post_mime_type, COUNT( * ) AS num_posts
FROM $wpdb->posts
WHERE post_type = 'attachment'
AND post_author = $current_user->ID
AND post_status != 'trash'
GROUP BY post_mime_type
", ARRAY_A );
foreach( $count as $row )
$_num_posts[$row['post_mime_type']] = $row['num_posts'];
$_total_posts = array_sum($_num_posts);
$detached = isset( $_REQUEST['detached'] ) || isset( $_REQUEST['find_detached'] );
if ( !isset( $total_orphans ) )
$total_orphans = $wpdb->get_var("
SELECT COUNT( * )
FROM $wpdb->posts
WHERE post_type = 'attachment'
AND post_author = $current_user->ID
AND post_status != 'trash'
AND post_parent < 1
");
$matches = wp_match_mime_types(array_keys($post_mime_types), array_keys($_num_posts));
foreach ( $matches as $type => $reals )
foreach ( $reals as $real )
$num_posts[$type] = ( isset( $num_posts[$type] ) ) ? $num_posts[$type] + $_num_posts[$real] : $_num_posts[$real];
$class = ( empty($_GET['post_mime_type']) && !$detached && !isset($_GET['status']) ) ? ' class="current"' : '';
$views['all'] = "<a href='upload.php'$class>" . sprintf( __('All <span class="count">(%s)</span>', 'uploaded files' ), number_format_i18n( $_total_posts )) . '</a>';
foreach ( $post_mime_types as $mime_type => $label ) {
$class = '';
if ( !wp_match_mime_types($mime_type, $avail_post_mime_types) )
continue;
if ( !empty($_GET['post_mime_type']) && wp_match_mime_types($mime_type, $_GET['post_mime_type']) )
$class = ' class="current"';
if ( !empty( $num_posts[$mime_type] ) )
$views[$mime_type] = "<a href='upload.php?post_mime_type=$mime_type'$class>" . sprintf( translate_nooped_plural( $label[2], $num_posts[$mime_type] ), $num_posts[$mime_type] ) . '</a>';
}
$views['detached'] = '<a href="upload.php?detached=1"' . ( $detached ? ' class="current"' : '' ) . '>' . sprintf( __( 'Unattached <span class="count">(%s)</span>', 'detached files' ), $total_orphans ) . '</a>';
return $views;
}
うまく機能しますが、投稿数はカスタム投稿タイプでは機能しません。
すなわちすべて|公開|下書き|保留中|ごみ箱 - カスタム投稿のカウントは機能しません。
管理者としてのユーザーのためにこれらはpost_type = "post"とpost_type = "gallery"のスクリーンショットです
Atuhorとしてのユーザにとって、これらはpost_type = "post"とpost_type = "gallery"のスクリーンショットです。
投稿数はpost_type = "post"でうまく機能しますが、2番目のスクリーンショットでpost_type = "gallery"になると問題が発生します。
すべて公開|下書き|保留中|ゴミ、部
上記のコードを適用して、下の画像に示す結果を得ました。投稿数は1ですが、他のユーザーの投稿であるため表示されません。
修正したいのは投稿数です。
これはpost_type = "posts"の投稿数は0が正しい画像で、ギャラリーにはそれをフォローすることを望んでいます。
これはpost_type = "gallery"の投稿数は1が間違っている{0でなければならない}の画像で、次のようになります。投稿の場合。
変更する必要があります。
'post_type' => 'post',
に:
'post_type' => 'your_custom_post_type_name',
そして標準投稿へのすべての参照。また、メインクエリに対してのみフィルタを追加する必要があります。そうしないと、セカンダリクエリで問題が発生する可能性があります。 gallery
カスタム投稿タイプのコード例をベローズします。私はあなたが投稿したコードをデバッグしようとしていました(somewhreより)、ついに私はすでに使っている実用的なコードを投稿することにしました。質問が示唆している、あなたはそれに問題はありません)。
add_action( 'pre_get_posts', function( $query ) {
//Note that current_user_can('edit_others_posts') check for
//capability_type like posts, custom capabilities may be defined for custom posts
if( is_admin() && ! current_user_can('edit_others_posts') && $query->is_main_query() ) {
$query->set('author', get_current_user_id());
//For standard posts
add_filter('views_edit-post', 'views_filter_for_own_posts' );
//For gallery post type
add_filter('views_edit-gallery', 'views_filter_for_own_posts' );
//You can add more similar filters for more post types with no extra changes
}
} );
function views_filter_for_own_posts( $views ) {
$post_type = get_query_var('post_type');
$author = get_current_user_id();
unset($views['mine']);
$new_views = array(
'all' => __('All'),
'publish' => __('Published'),
'private' => __('Private'),
'pending' => __('Pending Review'),
'future' => __('Scheduled'),
'draft' => __('Draft'),
'trash' => __('Trash')
);
foreach( $new_views as $view => $name ) {
$query = array(
'author' => $author,
'post_type' => $post_type
);
if($view == 'all') {
$query['all_posts'] = 1;
$class = ( get_query_var('all_posts') == 1 || get_query_var('post_status') == '' ) ? ' class="current"' : '';
$url_query_var = 'all_posts=1';
} else {
$query['post_status'] = $view;
$class = ( get_query_var('post_status') == $view ) ? ' class="current"' : '';
$url_query_var = 'post_status='.$view;
}
$result = new WP_Query($query);
if($result->found_posts > 0) {
$views[$view] = sprintf(
'<a href="%s"'. $class .'>'.__($name).' <span class="count">(%d)</span></a>',
admin_url('edit.php?'.$url_query_var.'&post_type='.$post_type),
$result->found_posts
);
} else {
unset($views[$view]);
}
}
return $views;
}