Make WordPress Core


Ignore:
Timestamp:
05/08/2008 07:19:58 PM (18 years ago)
Author:
ryan
Message:

Use array calling style. see #6647

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/widgets.php

    r7902 r7911  
    904904        $number = 15;
    905905
    906     $r = new WP_Query("showposts=$number&what_to_show=posts&nopaging=0&post_status=publish");
     906    $r = new WP_Query(array('showposts' => $number, 'what_to_show' => 'posts', 'nopaging' => 0, 'post_status' => 'publish'));
    907907    if ($r->have_posts()) :
    908908?>
Note: See TracChangeset for help on using the changeset viewer.