Skip to content

Instantly share code, notes, and snippets.

@ipokkel
Created July 26, 2024 09:11
Show Gist options
  • Save ipokkel/b42506c532b36175560194932734e128 to your computer and use it in GitHub Desktop.
Save ipokkel/b42506c532b36175560194932734e128 to your computer and use it in GitHub Desktop.
Set a custom header to replace the default "Membership Required" heading for the PMPro non-member message.
<?php
/**
* Customize the no access message header.
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_custom_no_access_message_header( $header, $level_ids ) {
$header = 'Your Custom Header Here';
return $header;
}
add_filter( 'pmpro_no_access_message_header', 'my_custom_no_access_message_header', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment