Displaying User Avatar with activity
-
Hi all, Im a bit of a php newbie so bare with me What Im trying to accomplish is pull the last 20 activities from the database and display the user avatar associated with the activity. I believe Im on the right path but Im not really sure where to go from here. Here is what I have in my functions.php file thus far. Any help would be much appreciated! Thanks
‘function last_activities($num = 20) {
global $wpdb, $bp;
$results = $wpdb->get_results( $wpdb->prepare( “SELECT * FROM {$bp->activity->table_name} ORDER BY id DESC LIMIT 20”, $num ) );
return $results;
}’
- The topic ‘Displaying User Avatar with activity’ is closed to new replies.