Definition:
function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) {}
Parameters
- string $type
- string $limit
- string $format
- string $before
- string $after
- bool $show_post_count
Source code
function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) { _deprecated_function( __FUNCTION__, '2.1', 'wp_get_archives()' ); $args = compact('type', 'limit', 'format', 'before', 'after', 'show_post_count'); return wp_get_archives($args); }
1144
No comments yet... Be the first to leave a reply!