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

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

- Page: https://pluginprobe.com/plugins/s2member/111206/code/includes/menu-pages/code-samples/custom-queries.x-php
- Raw: https://pluginprobe.com/plugins/s2member/111206/raw/includes/menu-pages/code-samples/custom-queries.x-php
- Modified: 2011-12-06T12:37:48+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/111206/code/includes/menu-pages/code-samples/custom-queries.x-php#L10-L20`.

```
<?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();
?>
```
