Skip to content

Instantly share code, notes, and snippets.

@LaxusCroco
Created March 29, 2024 15:58
Show Gist options
  • Select an option

  • Save LaxusCroco/de1754e484fe36d22a957e9d13e51aca to your computer and use it in GitHub Desktop.

Select an option

Save LaxusCroco/de1754e484fe36d22a957e9d13e51aca to your computer and use it in GitHub Desktop.
Replace 'manage_options' with the needed capability
<?php
add_filter( 'jet-popup/access-cap', 'my_custom_admin_ui_cap', 10 );
function my_custom_admin_ui_cap( $capability ) {
// Return your custom capability
return 'manage_options';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment