diff --git a/includes/distributor-customizations/global.php b/includes/distributor-customizations/global.php index aabe682e..71201db0 100644 --- a/includes/distributor-customizations/global.php +++ b/includes/distributor-customizations/global.php @@ -43,3 +43,19 @@ function( $post_array, $remote_id, $post ) { * ===== End of Post publication date ====== * ========================================= */ + +/** + * ========================================= + * ===== Allow editors to pull content ===== + * ========================================= + */ +function newspack_network_filter_distributor_menu_cap() { + return 'edit_others_posts'; +} +add_filter( 'dt_capabilities', 'newspack_network_filter_distributor_menu_cap' ); +add_filter( 'dt_pull_capabilities', 'newspack_network_filter_distributor_menu_cap' ); +/** + * ========================================= + * ==== End of editors to pull content ===== + * ========================================= + */