Make WordPress Core


Ignore:
Timestamp:
03/19/2004 04:20:49 PM (21 years ago)
Author:
rboren
Message:

Introducing wp_list_authors() and friends.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-blog-header.php

    r976 r979  
    258258
    259259// author stuff
     260$auteurs = $wpdb->get_results("SELECT * FROM $tableusers WHERE 1=1");
     261foreach ($auteurs as $auteur) {
     262    $cache_authors[$auteur->ID] = $auteur;
     263}
     264
    260265if ((empty($author)) || ($author == 'all') || ($author == '0')) {
    261266    $whichauthor='';
Note: See TracChangeset for help on using the changeset viewer.