Statistics: Posted by Cgoguen — October 19th, 2011, 3:03 pm
Statistics: Posted by Cristián Lávaque — September 26th, 2011, 2:19 am
Statistics: Posted by Jason Caldwell — September 14th, 2011, 10:41 am
Statistics: Posted by antseo — September 14th, 2011, 10:28 am
Statistics: Posted by antseo — September 14th, 2011, 9:53 am
$user = new WP_User($user);
$user = new WP_User($user->ID);
Statistics: Posted by Jason Caldwell — September 14th, 2011, 8:19 am
Statistics: Posted by antseo — September 14th, 2011, 7:21 am
Statistics: Posted by Jason Caldwell — September 14th, 2011, 12:49 am
<?php
foreach (get_users () as $user)
{
$user = new WP_User ($user);
echo get_user_field ("age", $user->ID);
print_r(get_s2member_custom_fields($user->ID));
print_r($user);
}
?>
Statistics: Posted by antseo — September 13th, 2011, 10:20 pm
<?php
foreach (get_users () as $user)
{
$user = new WP_User ($user->ID);
echo get_user_field ("my_field_id", $user->ID);
// print_r(get_s2member_custom_fields($user->ID)); // Requires s2Member v110912+.
// print_r($user); // for a list of properties available for display.
}
?>
Statistics: Posted by Jason Caldwell — September 13th, 2011, 9:16 pm
Statistics: Posted by antseo — September 13th, 2011, 8:38 pm
<?php
foreach(get_users("role=s2member_level1") as $user)
{
$user = new WP_User($user->ID);
// print_r($user); for a list of properties available for display.
}
?>
<?php
foreach(get_users() as $user)
{
$user = new WP_User($user->ID);
// print_r($user); for a list of properties available for display.
}
?>
<?php
foreach(get_users("role=subscriber") as $user)
{
$user = new WP_User($user->ID);
// print_r($user); for a list of properties available for display.
}
?>
Statistics: Posted by Jason Caldwell — September 13th, 2011, 8:31 pm
Jason Caldwell wrote:
Nope, sorry. This is NOT in s2Member, or s2Member Pro yet.
In the mean time, you might take a look at this:
http://wordpress.org/extend/plugins/members-list/
Statistics: Posted by man-O-media — February 14th, 2011, 9:28 pm
Statistics: Posted by sharac — November 10th, 2010, 5:16 pm
Statistics: Posted by Guest — September 21st, 2010, 11:03 am
Statistics: Posted by sbsantiago — September 14th, 2010, 5:32 pm
Statistics: Posted by Jason Caldwell — August 31st, 2010, 11:27 pm
Statistics: Posted by sbsantiago — August 31st, 2010, 9:47 pm
Statistics: Posted by Jason Caldwell — June 23rd, 2010, 8:20 pm
Statistics: Posted by Elizabeth — June 2nd, 2010, 3:41 am
Statistics: Posted by Guest — June 1st, 2010, 8:10 am
Statistics: Posted by meeganjones — May 28th, 2010, 8:21 pm