Statistics: Posted by dhempy — November 2nd, 2011, 9:44 am
Statistics: Posted by Jason Caldwell — November 1st, 2011, 7:39 pm
Statistics: Posted by dhempy — October 27th, 2011, 1:44 pm
<?php
add_action ("wp", "my_custom_s2_security_gate");
function my_custom_s2_security_gate ()
{
if (!is_admin() && is_singular ("my_custom_post_type") && !current_user_can ("access_s2member_level1"))
/* This protects "all" Posts of Post Type: `my_custom_post_type`. See: <http://codex.wordpress.org/Conditional_Tags#A_Single_Page.2C_Single_Post_or_Attachment>. */
wp_redirect (get_page_link ($GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["membership_options_page"])) . exit ();
}
?>
Statistics: Posted by Jason Caldwell — October 26th, 2011, 4:36 pm
Statistics: Posted by dhempy — October 26th, 2011, 2:34 pm
Statistics: Posted by dhempy — October 14th, 2011, 1:51 pm
Statistics: Posted by dhempy — October 12th, 2011, 4:00 pm
Statistics: Posted by Jason Caldwell — October 11th, 2011, 7:11 pm
Statistics: Posted by Cristián Lávaque — October 7th, 2011, 12:39 am
<?php
if (! current_user_can("access_s2member_level2")) {
wp_redirect( home_url('/sign-up/') );
exit();
}
?>
Statistics: Posted by dhempy — October 6th, 2011, 2:50 pm
Statistics: Posted by Cristián Lávaque — August 23rd, 2011, 11:50 pm
Statistics: Posted by dev9833 — August 23rd, 2011, 9:37 pm
Statistics: Posted by Jason Caldwell — August 23rd, 2011, 8:12 pm
Statistics: Posted by dev9833 — August 23rd, 2011, 12:09 am