Duplicate Snippet
Embed Snippet on Your Site
MemberPress: Hide Protected Posts from Search Results
Hide any posts that the current user (or guest) does not have access to from search results.
Code Preview
php
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
This will result in a memory error as it’ll get called recursively. You’re using `get_posts`which again will call `pre_get_posts`.
You’ll have to use `remove_action( ‘pre_get_posts’, __FUNCTION__ );` inside your callback to prevent this.