Deprecate list_authors(). Clean up wp_list_authors().

git-svn-id: https://develop.svn.wordpress.org/trunk@3848 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2006-06-06 04:50:41 +00:00
parent c5cfbc9e5e
commit 54a665ff4d
2 changed files with 15 additions and 17 deletions

View File

@@ -456,4 +456,10 @@ function dropdown_cats($optionall = 1, $all = 'All', $orderby = 'ID', $order = '
function tinymce_include() {
wp_print_script( 'wp_tiny_mce' );
}
function list_authors($optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '') {
$args = compact('optioncount', 'exclude_admin', 'show_fullname', 'hide_empty', 'feed', 'feed_image');
return wp_list_authors($args);
}
?>