Skip to content

Instantly share code, notes, and snippets.

@sc0ttkclark
Created January 28, 2014 03:23
Show Gist options
  • Save sc0ttkclark/8661802 to your computer and use it in GitHub Desktop.
Save sc0ttkclark/8661802 to your computer and use it in GitHub Desktop.
Give all admins access to pods_is_admin
<?php
function access_for_all_admins( $access ) {
if ( !$access && current_user_can( 'manage_options' ) ) {
$access = true;
}
return $access;
}
add_filter( 'pods_is_admin', 'access_for_all_admins' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment