Hi there.
Is there any way of build a page that list all the subscribers of the blog? A plugin...?
Can anyone give me a tip how ro do this?
Thank you very much.
Luis J.
Hi there.
Is there any way of build a page that list all the subscribers of the blog? A plugin...?
Can anyone give me a tip how ro do this?
Thank you very much.
Luis J.
Did you ever find one? I am looking at well. Please shoot me note if you did.
Check this code (http://wordpress.org/support/topic/176355?replies=4).
<?php
$subscribers = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users ORDER BY user_registered DESC");
for($i=0;$i<4;$i++){
echo "<li>".$subscribers[$i]->user_nicename."</li>";
}
?>This topic has been closed to new replies.