Last active
April 12, 2021 22:34
-
-
Save strangerstudios/0acbd73ad35fdea7dea1c82a025150c1 to your computer and use it in GitHub Desktop.
Add a "Requires Membership" column to the All Pages dashboard page to show what levels are required to view. Raw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//add a new column to the all pages view | |
function requires_membership_pages_columns_head( $defaults ) { | |
$defaults['requires_membership'] = 'Requires Membership'; | |
return $defaults; | |
} | |
//get the column data | |
function requires_membership_pages_columns_content( $column_name, $post_ID ) { | |
if ($column_name == 'requires_membership') { | |
global $membership_levels, $wpdb; | |
$post_levels = $wpdb->get_col("SELECT membership_id FROM {$wpdb->pmpro_memberships_pages} WHERE page_id = '{$post_ID}'"); | |
$protected_levels = array(); | |
foreach($membership_levels as $level) { | |
if( in_array( $level->id, $post_levels ) ) { | |
$protected_levels[] = $level->name; | |
} | |
} | |
echo implode( ', ', $protected_levels); | |
} | |
} | |
add_filter( 'manage_pages_columns', 'requires_membership_pages_columns_head' ); | |
add_action( 'manage_pages_custom_column', 'requires_membership_pages_columns_content', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This recipe is included in the blog post on "Show a Post, Page or Category’s Required Membership Levels in the Dashboard “All” Views" at Paid Memberships Pro here: https://www.paidmembershipspro.com/show-post-page-categorys-required-membership-levels-dashboard-views/