Created
April 30, 2019 00:15
-
-
Save messica/915bcc36451cd496c9b17962ec6c2cbe to your computer and use it in GitHub Desktop.
Hide non-member messages on category archives.
This file contains hidden or 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 | |
| /** | |
| * 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