Skip to content

Instantly share code, notes, and snippets.

@messica
Created April 30, 2019 00:15
Show Gist options
  • Select an option

  • Save messica/915bcc36451cd496c9b17962ec6c2cbe to your computer and use it in GitHub Desktop.

Select an option

Save messica/915bcc36451cd496c9b17962ec6c2cbe to your computer and use it in GitHub Desktop.
Hide non-member messages on category archives.
<?php
/**
* Hide non-member messages on category archives.
*/
function my_the_content( $content ) {
if ( is_category() ) {
$content = preg_replace( '/<div class="pmpro_content_message">.*<\/div>/', '', $content );
}
return $content;
}
add_filter( 'the_content', 'my_the_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment