Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Users display page with avatar

It is possible but I don’t know of any plugins to do it. You can probably do it yourself fairly easily though :). You need to make a WordPress plugin that will call the data and display it. You can get the data by using something like

global $wpdb;
$latestusers = $wpdb->get_results("MySQL query");

but the wordpress wpdb reference and plugin writing reference will be of more help.

Skip to toolbar