# s2member/110815/includes/menu-pages/code-samples/custom-queries.php

s2Member – Excellent for All Kinds of Memberships, Content Restriction Paywalls &amp; Member Access Subscriptions, version 110815. 17 lines.

- Page: https://pluginprobe.com/plugins/s2member/110815/code/includes/menu-pages/code-samples/custom-queries.php
- Raw: https://pluginprobe.com/plugins/s2member/110815/raw/includes/menu-pages/code-samples/custom-queries.php
- Modified: 2011-08-15T17:39:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/s2member/110815/code/includes/menu-pages/code-samples/custom-queries.php#L10-L20`.

```php
<?php
attach_s2member_query_filters();
	query_posts("posts_per_page=5");

	if (have_posts()):
		while (have_posts()):
			the_post();
		/*
		Protected content will be excluded automatically.
		( based on the current User/Member status )
		*/
		endwhile;
	endif;

	wp_reset_query();
detach_s2member_query_filters();
?>
```
