Make WordPress Core


Ignore:
Timestamp:
06/15/2006 08:28:47 PM (20 years ago)
Author:
ryan
Message:

wp_get_archives() cleanup.

File:
1 edited

Legend:

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

    r3849 r3878  
    471471}
    472472
     473function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) {
     474    $args = compact('type', 'limit', 'format', 'before', 'after', 'show_post_count');
     475    return wp_get_archives($args);
     476}
     477
    473478?>
Note: See TracChangeset for help on using the changeset viewer.