]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/deprecated.php
WordPress 3.4.1
[autoinstalls/wordpress.git] / wp-includes / deprecated.php
1 <?php
2 /**
3  * Deprecated functions from past WordPress versions. You shouldn't use these
4  * functions and look for the alternatives instead. The functions will be
5  * removed in a later version.
6  *
7  * @package WordPress
8  * @subpackage Deprecated
9  */
10
11 /*
12  * Deprecated functions come here to die.
13  */
14
15 /**
16  * Entire Post data.
17  *
18  * @since 0.71
19  * @deprecated 1.5.1
20  * @deprecated Use get_post()
21  * @see get_post()
22  *
23  * @param int $postid
24  * @return array
25  */
26 function get_postdata($postid) {
27         _deprecated_function( __FUNCTION__, '1.5.1', 'get_post()' );
28
29         $post = &get_post($postid);
30
31         $postdata = array (
32                 'ID' => $post->ID,
33                 'Author_ID' => $post->post_author,
34                 'Date' => $post->post_date,
35                 'Content' => $post->post_content,
36                 'Excerpt' => $post->post_excerpt,
37                 'Title' => $post->post_title,
38                 'Category' => $post->post_category,
39                 'post_status' => $post->post_status,
40                 'comment_status' => $post->comment_status,
41                 'ping_status' => $post->ping_status,
42                 'post_password' => $post->post_password,
43                 'to_ping' => $post->to_ping,
44                 'pinged' => $post->pinged,
45                 'post_type' => $post->post_type,
46                 'post_name' => $post->post_name
47         );
48
49         return $postdata;
50 }
51
52 /**
53  * Sets up the WordPress Loop.
54  *
55  * @since 1.0.1
56  * @deprecated 1.5
57  * @deprecated Use The Loop - {@link http://codex.wordpress.org/The_Loop Use new WordPress Loop}
58  */
59 function start_wp() {
60         global $wp_query, $post;
61
62         _deprecated_function( __FUNCTION__, '1.5', __('new WordPress Loop') );
63
64         // Since the old style loop is being used, advance the query iterator here.
65         $wp_query->next_post();
66
67         setup_postdata($post);
68 }
69
70 /**
71  * Return or Print Category ID.
72  *
73  * @since 0.71
74  * @deprecated 0.71
75  * @deprecated use get_the_category()
76  * @see get_the_category()
77  *
78  * @param bool $echo
79  * @return null|int
80  */
81 function the_category_ID($echo = true) {
82         _deprecated_function( __FUNCTION__, '0.71', 'get_the_category()' );
83
84         // Grab the first cat in the list.
85         $categories = get_the_category();
86         $cat = $categories[0]->term_id;
87
88         if ( $echo )
89                 echo $cat;
90
91         return $cat;
92 }
93
94 /**
95  * Print category with optional text before and after.
96  *
97  * @since 0.71
98  * @deprecated 0.71
99  * @deprecated use get_the_category_by_ID()
100  * @see get_the_category_by_ID()
101  *
102  * @param string $before
103  * @param string $after
104  */
105 function the_category_head($before='', $after='') {
106         global $currentcat, $previouscat;
107
108         _deprecated_function( __FUNCTION__, '0.71', 'get_the_category_by_ID()' );
109
110         // Grab the first cat in the list.
111         $categories = get_the_category();
112         $currentcat = $categories[0]->category_id;
113         if ( $currentcat != $previouscat ) {
114                 echo $before;
115                 echo get_the_category_by_ID($currentcat);
116                 echo $after;
117                 $previouscat = $currentcat;
118         }
119 }
120
121 /**
122  * Prints link to the previous post.
123  *
124  * @since 1.5
125  * @deprecated 2.0
126  * @deprecated Use previous_post_link()
127  * @see previous_post_link()
128  *
129  * @param string $format
130  * @param string $previous
131  * @param string $title
132  * @param string $in_same_cat
133  * @param int $limitprev
134  * @param string $excluded_categories
135  */
136 function previous_post($format='%', $previous='previous post: ', $title='yes', $in_same_cat='no', $limitprev=1, $excluded_categories='') {
137
138         _deprecated_function( __FUNCTION__, '2.0', 'previous_post_link()' );
139
140         if ( empty($in_same_cat) || 'no' == $in_same_cat )
141                 $in_same_cat = false;
142         else
143                 $in_same_cat = true;
144
145         $post = get_previous_post($in_same_cat, $excluded_categories);
146
147         if ( !$post )
148                 return;
149
150         $string = '<a href="'.get_permalink($post->ID).'">'.$previous;
151         if ( 'yes' == $title )
152                 $string .= apply_filters('the_title', $post->post_title, $post->ID);
153         $string .= '</a>';
154         $format = str_replace('%', $string, $format);
155         echo $format;
156 }
157
158 /**
159  * Prints link to the next post.
160  *
161  * @since 0.71
162  * @deprecated 2.0
163  * @deprecated Use next_post_link()
164  * @see next_post_link()
165  *
166  * @param string $format
167  * @param string $next
168  * @param string $title
169  * @param string $in_same_cat
170  * @param int $limitnext
171  * @param string $excluded_categories
172  */
173 function next_post($format='%', $next='next post: ', $title='yes', $in_same_cat='no', $limitnext=1, $excluded_categories='') {
174         _deprecated_function( __FUNCTION__, '2.0', 'next_post_link()' );
175
176         if ( empty($in_same_cat) || 'no' == $in_same_cat )
177                 $in_same_cat = false;
178         else
179                 $in_same_cat = true;
180
181         $post = get_next_post($in_same_cat, $excluded_categories);
182
183         if ( !$post     )
184                 return;
185
186         $string = '<a href="'.get_permalink($post->ID).'">'.$next;
187         if ( 'yes' == $title )
188                 $string .= apply_filters('the_title', $post->post_title, $post->ID);
189         $string .= '</a>';
190         $format = str_replace('%', $string, $format);
191         echo $format;
192 }
193
194 /**
195  * Whether user can create a post.
196  *
197  * @since 1.5
198  * @deprecated 2.0
199  * @deprecated Use current_user_can()
200  * @see current_user_can()
201  *
202  * @param int $user_id
203  * @param int $blog_id Not Used
204  * @param int $category_id Not Used
205  * @return bool
206  */
207 function user_can_create_post($user_id, $blog_id = 1, $category_id = 'None') {
208         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
209
210         $author_data = get_userdata($user_id);
211         return ($author_data->user_level > 1);
212 }
213
214 /**
215  * Whether user can create a post.
216  *
217  * @since 1.5
218  * @deprecated 2.0
219  * @deprecated Use current_user_can()
220  * @see current_user_can()
221  *
222  * @param int $user_id
223  * @param int $blog_id Not Used
224  * @param int $category_id Not Used
225  * @return bool
226  */
227 function user_can_create_draft($user_id, $blog_id = 1, $category_id = 'None') {
228         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
229
230         $author_data = get_userdata($user_id);
231         return ($author_data->user_level >= 1);
232 }
233
234 /**
235  * Whether user can edit a post.
236  *
237  * @since 1.5
238  * @deprecated 2.0
239  * @deprecated Use current_user_can()
240  * @see current_user_can()
241  *
242  * @param int $user_id
243  * @param int $post_id
244  * @param int $blog_id Not Used
245  * @return bool
246  */
247 function user_can_edit_post($user_id, $post_id, $blog_id = 1) {
248         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
249
250         $author_data = get_userdata($user_id);
251         $post = get_post($post_id);
252         $post_author_data = get_userdata($post->post_author);
253
254         if ( (($user_id == $post_author_data->ID) && !($post->post_status == 'publish' && $author_data->user_level < 2))
255                          || ($author_data->user_level > $post_author_data->user_level)
256                          || ($author_data->user_level >= 10) ) {
257                 return true;
258         } else {
259                 return false;
260         }
261 }
262
263 /**
264  * Whether user can delete a post.
265  *
266  * @since 1.5
267  * @deprecated 2.0
268  * @deprecated Use current_user_can()
269  * @see current_user_can()
270  *
271  * @param int $user_id
272  * @param int $post_id
273  * @param int $blog_id Not Used
274  * @return bool
275  */
276 function user_can_delete_post($user_id, $post_id, $blog_id = 1) {
277         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
278
279         // right now if one can edit, one can delete
280         return user_can_edit_post($user_id, $post_id, $blog_id);
281 }
282
283 /**
284  * Whether user can set new posts' dates.
285  *
286  * @since 1.5
287  * @deprecated 2.0
288  * @deprecated Use current_user_can()
289  * @see current_user_can()
290  *
291  * @param int $user_id
292  * @param int $blog_id Not Used
293  * @param int $category_id Not Used
294  * @return bool
295  */
296 function user_can_set_post_date($user_id, $blog_id = 1, $category_id = 'None') {
297         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
298
299         $author_data = get_userdata($user_id);
300         return (($author_data->user_level > 4) && user_can_create_post($user_id, $blog_id, $category_id));
301 }
302
303 /**
304  * Whether user can delete a post.
305  *
306  * @since 1.5
307  * @deprecated 2.0
308  * @deprecated Use current_user_can()
309  * @see current_user_can()
310  *
311  * @param int $user_id
312  * @param int $post_id
313  * @param int $blog_id Not Used
314  * @return bool returns true if $user_id can edit $post_id's date
315  */
316 function user_can_edit_post_date($user_id, $post_id, $blog_id = 1) {
317         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
318
319         $author_data = get_userdata($user_id);
320         return (($author_data->user_level > 4) && user_can_edit_post($user_id, $post_id, $blog_id));
321 }
322
323 /**
324  * Whether user can delete a post.
325  *
326  * @since 1.5
327  * @deprecated 2.0
328  * @deprecated Use current_user_can()
329  * @see current_user_can()
330  *
331  * @param int $user_id
332  * @param int $post_id
333  * @param int $blog_id Not Used
334  * @return bool returns true if $user_id can edit $post_id's comments
335  */
336 function user_can_edit_post_comments($user_id, $post_id, $blog_id = 1) {
337         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
338
339         // right now if one can edit a post, one can edit comments made on it
340         return user_can_edit_post($user_id, $post_id, $blog_id);
341 }
342
343 /**
344  * Whether user can delete a post.
345  *
346  * @since 1.5
347  * @deprecated 2.0
348  * @deprecated Use current_user_can()
349  * @see current_user_can()
350  *
351  * @param int $user_id
352  * @param int $post_id
353  * @param int $blog_id Not Used
354  * @return bool returns true if $user_id can delete $post_id's comments
355  */
356 function user_can_delete_post_comments($user_id, $post_id, $blog_id = 1) {
357         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
358
359         // right now if one can edit comments, one can delete comments
360         return user_can_edit_post_comments($user_id, $post_id, $blog_id);
361 }
362
363 /**
364  * Can user can edit other user.
365  *
366  * @since 1.5
367  * @deprecated 2.0
368  * @deprecated Use current_user_can()
369  * @see current_user_can()
370  *
371  * @param int $user_id
372  * @param int $other_user
373  * @return bool
374  */
375 function user_can_edit_user($user_id, $other_user) {
376         _deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
377
378         $user  = get_userdata($user_id);
379         $other = get_userdata($other_user);
380         if ( $user->user_level > $other->user_level || $user->user_level > 8 || $user->ID == $other->ID )
381                 return true;
382         else
383                 return false;
384 }
385
386 /**
387  * Gets the links associated with category $cat_name.
388  *
389  * @since 0.71
390  * @deprecated 2.1
391  * @deprecated Use get_bookmarks()
392  * @see get_bookmarks()
393  *
394  * @param string $cat_name Optional. The category name to use. If no match is found uses all.
395  * @param string $before Optional. The html to output before the link.
396  * @param string $after Optional. The html to output after the link.
397  * @param string $between Optional. The html to output between the link/image and it's description. Not used if no image or $show_images is true.
398  * @param bool $show_images Optional. Whether to show images (if defined).
399  * @param string $orderby Optional. The order to output the links. E.g. 'id', 'name', 'url', 'description' or 'rating'. Or maybe owner.
400  *              If you start the name with an underscore the order will be reversed. You can also specify 'rand' as the order which will return links in a
401  *              random order.
402  * @param bool $show_description Optional. Whether to show the description if show_images=false/not defined.
403  * @param bool $show_rating Optional. Show rating stars/chars.
404  * @param int $limit            Optional. Limit to X entries. If not specified, all entries are shown.
405  * @param int $show_updated Optional. Whether to show last updated timestamp
406  */
407 function get_linksbyname($cat_name = "noname", $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id',
408                                                  $show_description = true, $show_rating = false,
409                                                  $limit = -1, $show_updated = 0) {
410         _deprecated_function( __FUNCTION__, '2.1', 'get_bookmarks()' );
411
412         $cat_id = -1;
413         $cat = get_term_by('name', $cat_name, 'link_category');
414         if ( $cat )
415                 $cat_id = $cat->term_id;
416
417         get_links($cat_id, $before, $after, $between, $show_images, $orderby, $show_description, $show_rating, $limit, $show_updated);
418 }
419
420 /**
421  * Gets the links associated with the named category.
422  *
423  * @since 1.0.1
424  * @deprecated 2.1
425  * @deprecated Use wp_list_bookmarks()
426  * @see wp_list_bookmarks()
427  *
428  * @param string $category The category to use.
429  * @param string $args
430  * @return bool|null
431  */
432 function wp_get_linksbyname($category, $args = '') {
433         _deprecated_function(__FUNCTION__, '2.1', 'wp_list_bookmarks()');
434
435         $defaults = array(
436                 'after' => '<br />',
437                 'before' => '',
438                 'categorize' => 0,
439                 'category_after' => '',
440                 'category_before' => '',
441                 'category_name' => $category,
442                 'show_description' => 1,
443                 'title_li' => '',
444         );
445
446         $r = wp_parse_args( $args, $defaults );
447
448         return wp_list_bookmarks($r);
449 }
450
451 /**
452  * Gets an array of link objects associated with category $cat_name.
453  *
454  * <code>
455  *      $links = get_linkobjectsbyname('fred');
456  *      foreach ($links as $link) {
457  *              echo '<li>'.$link->link_name.'</li>';
458  *      }
459  * </code>
460  *
461  * @since 1.0.1
462  * @deprecated 2.1
463  * @deprecated Use get_bookmarks()
464  * @see get_bookmarks()
465  *
466  * @param string $cat_name The category name to use. If no match is found uses all.
467  * @param string $orderby The order to output the links. E.g. 'id', 'name', 'url', 'description', or 'rating'.
468  *              Or maybe owner. If you start the name with an underscore the order will be reversed. You can also
469  *              specify 'rand' as the order which will return links in a random order.
470  * @param int $limit Limit to X entries. If not specified, all entries are shown.
471  * @return unknown
472  */
473 function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) {
474         _deprecated_function( __FUNCTION__, '2.1', 'get_bookmarks()' );
475
476         $cat_id = -1;
477         $cat = get_term_by('name', $cat_name, 'link_category');
478         if ( $cat )
479                 $cat_id = $cat->term_id;
480
481         return get_linkobjects($cat_id, $orderby, $limit);
482 }
483
484 /**
485  * Gets an array of link objects associated with category n.
486  *
487  * Usage:
488  * <code>
489  *      $links = get_linkobjects(1);
490  *      if ($links) {
491  *              foreach ($links as $link) {
492  *                      echo '<li>'.$link->link_name.'<br />'.$link->link_description.'</li>';
493  *              }
494  *      }
495  * </code>
496  *
497  * Fields are:
498  * <ol>
499  *      <li>link_id</li>
500  *      <li>link_url</li>
501  *      <li>link_name</li>
502  *      <li>link_image</li>
503  *      <li>link_target</li>
504  *      <li>link_category</li>
505  *      <li>link_description</li>
506  *      <li>link_visible</li>
507  *      <li>link_owner</li>
508  *      <li>link_rating</li>
509  *      <li>link_updated</li>
510  *      <li>link_rel</li>
511  *      <li>link_notes</li>
512  * </ol>
513  *
514  * @since 1.0.1
515  * @deprecated 2.1
516  * @deprecated Use get_bookmarks()
517  * @see get_bookmarks()
518  *
519  * @param int $category The category to use. If no category supplied uses all
520  * @param string $orderby the order to output the links. E.g. 'id', 'name', 'url',
521  *              'description', or 'rating'. Or maybe owner. If you start the name with an
522  *              underscore the order will be reversed. You can also specify 'rand' as the
523  *              order which will return links in a random order.
524  * @param int $limit Limit to X entries. If not specified, all entries are shown.
525  * @return unknown
526  */
527 function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {
528         _deprecated_function( __FUNCTION__, '2.1', 'get_bookmarks()' );
529
530         $links = get_bookmarks( array( 'category' => $category, 'orderby' => $orderby, 'limit' => $limit ) ) ;
531
532         $links_array = array();
533         foreach ($links as $link)
534                 $links_array[] = $link;
535
536         return $links_array;
537 }
538
539 /**
540  * Gets the links associated with category 'cat_name' and display rating stars/chars.
541  *
542  * @since 0.71
543  * @deprecated 2.1
544  * @deprecated Use get_bookmarks()
545  * @see get_bookmarks()
546  *
547  * @param string $cat_name The category name to use. If no match is found uses all
548  * @param string $before The html to output before the link
549  * @param string $after The html to output after the link
550  * @param string $between The html to output between the link/image and it's description. Not used if no image or show_images is true
551  * @param bool $show_images Whether to show images (if defined).
552  * @param string $orderby the order to output the links. E.g. 'id', 'name', 'url',
553  *              'description', or 'rating'. Or maybe owner. If you start the name with an
554  *              underscore the order will be reversed. You can also specify 'rand' as the
555  *              order which will return links in a random order.
556  * @param bool $show_description Whether to show the description if show_images=false/not defined
557  * @param int $limit Limit to X entries. If not specified, all entries are shown.
558  * @param int $show_updated Whether to show last updated timestamp
559  */
560 function get_linksbyname_withrating($cat_name = "noname", $before = '', $after = '<br />', $between = " ",
561                                                                         $show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0) {
562         _deprecated_function( __FUNCTION__, '2.1', 'get_bookmarks()' );
563
564         get_linksbyname($cat_name, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated);
565 }
566
567 /**
568  * Gets the links associated with category n and display rating stars/chars.
569  *
570  * @since 0.71
571  * @deprecated 2.1
572  * @deprecated Use get_bookmarks()
573  * @see get_bookmarks()
574  *
575  * @param int $category The category to use. If no category supplied uses all
576  * @param string $before The html to output before the link
577  * @param string $after The html to output after the link
578  * @param string $between The html to output between the link/image and it's description. Not used if no image or show_images == true
579  * @param bool $show_images Whether to show images (if defined).
580  * @param string $orderby The order to output the links. E.g. 'id', 'name', 'url',
581  *              'description', or 'rating'. Or maybe owner. If you start the name with an
582  *              underscore the order will be reversed. You can also specify 'rand' as the
583  *              order which will return links in a random order.
584  * @param bool $show_description Whether to show the description if show_images=false/not defined.
585  * @param string $limit Limit to X entries. If not specified, all entries are shown.
586  * @param int $show_updated Whether to show last updated timestamp
587  */
588 function get_links_withrating($category = -1, $before = '', $after = '<br />', $between = " ", $show_images = true,
589                                                           $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0) {
590         _deprecated_function( __FUNCTION__, '2.1', 'get_bookmarks()' );
591
592         get_links($category, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated);
593 }
594
595 /**
596  * Gets the auto_toggle setting.
597  *
598  * @since 0.71
599  * @deprecated 2.1
600  * @deprecated No alternative function available
601  *
602  * @param int $id The category to get. If no category supplied uses 0
603  * @return int Only returns 0.
604  */
605 function get_autotoggle($id = 0) {
606         _deprecated_function( __FUNCTION__, '2.1' );
607         return 0;
608 }
609
610 /**
611  * @since 0.71
612  * @deprecated 2.1
613  * @deprecated Use wp_list_categories()
614  * @see wp_list_categories()
615  *
616  * @param int $optionall
617  * @param string $all
618  * @param string $sort_column
619  * @param string $sort_order
620  * @param string $file
621  * @param bool $list
622  * @param int $optiondates
623  * @param int $optioncount
624  * @param int $hide_empty
625  * @param int $use_desc_for_title
626  * @param bool $children
627  * @param int $child_of
628  * @param int $categories
629  * @param int $recurse
630  * @param string $feed
631  * @param string $feed_image
632  * @param string $exclude
633  * @param bool $hierarchical
634  * @return unknown
635  */
636 function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0,
637                                    $optioncount = 0, $hide_empty = 1, $use_desc_for_title = 1, $children=false, $child_of=0, $categories=0,
638                                    $recurse=0, $feed = '', $feed_image = '', $exclude = '', $hierarchical=false) {
639         _deprecated_function( __FUNCTION__, '2.1', 'wp_list_categories()' );
640
641         $query = compact('optionall', 'all', 'sort_column', 'sort_order', 'file', 'list', 'optiondates', 'optioncount', 'hide_empty', 'use_desc_for_title', 'children',
642                 'child_of', 'categories', 'recurse', 'feed', 'feed_image', 'exclude', 'hierarchical');
643         return wp_list_cats($query);
644 }
645
646 /**
647  * @since 1.2
648  * @deprecated 2.1
649  * @deprecated Use wp_list_categories()
650  * @see wp_list_categories()
651  *
652  * @param string|array $args
653  * @return unknown
654  */
655 function wp_list_cats($args = '') {
656         _deprecated_function( __FUNCTION__, '2.1', 'wp_list_categories()' );
657
658         $r = wp_parse_args( $args );
659
660         // Map to new names.
661         if ( isset($r['optionall']) && isset($r['all']))
662                 $r['show_option_all'] = $r['all'];
663         if ( isset($r['sort_column']) )
664                 $r['orderby'] = $r['sort_column'];
665         if ( isset($r['sort_order']) )
666                 $r['order'] = $r['sort_order'];
667         if ( isset($r['optiondates']) )
668                 $r['show_last_update'] = $r['optiondates'];
669         if ( isset($r['optioncount']) )
670                 $r['show_count'] = $r['optioncount'];
671         if ( isset($r['list']) )
672                 $r['style'] = $r['list'] ? 'list' : 'break';
673         $r['title_li'] = '';
674
675         return wp_list_categories($r);
676 }
677
678 /**
679  * @since 0.71
680  * @deprecated 2.1
681  * @deprecated Use wp_dropdown_categories()
682  * @see wp_dropdown_categories()
683  *
684  * @param int $optionall
685  * @param string $all
686  * @param string $orderby
687  * @param string $order
688  * @param int $show_last_update
689  * @param int $show_count
690  * @param int $hide_empty
691  * @param bool $optionnone
692  * @param int $selected
693  * @param int $exclude
694  * @return unknown
695  */
696 function dropdown_cats($optionall = 1, $all = 'All', $orderby = 'ID', $order = 'asc',
697                 $show_last_update = 0, $show_count = 0, $hide_empty = 1, $optionnone = false,
698                 $selected = 0, $exclude = 0) {
699         _deprecated_function( __FUNCTION__, '2.1', 'wp_dropdown_categories()' );
700
701         $show_option_all = '';
702         if ( $optionall )
703                 $show_option_all = $all;
704
705         $show_option_none = '';
706         if ( $optionnone )
707                 $show_option_none = __('None');
708
709         $vars = compact('show_option_all', 'show_option_none', 'orderby', 'order',
710                                         'show_last_update', 'show_count', 'hide_empty', 'selected', 'exclude');
711         $query = add_query_arg($vars, '');
712         return wp_dropdown_categories($query);
713 }
714
715 /**
716  * @since 1.2
717  * @deprecated 2.1
718  * @deprecated Use wp_list_authors()
719  * @see wp_list_authors()
720  *
721  * @param bool $optioncount
722  * @param bool $exclude_admin
723  * @param bool $show_fullname
724  * @param bool $hide_empty
725  * @param string $feed
726  * @param string $feed_image
727  * @return unknown
728  */
729 function list_authors($optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '') {
730         _deprecated_function( __FUNCTION__, '2.1', 'wp_list_authors()' );
731
732         $args = compact('optioncount', 'exclude_admin', 'show_fullname', 'hide_empty', 'feed', 'feed_image');
733         return wp_list_authors($args);
734 }
735
736 /**
737  * @since 1.0.1
738  * @deprecated 2.1
739  * @deprecated Use wp_get_post_categories()
740  * @see wp_get_post_categories()
741  *
742  * @param int $blogid Not Used
743  * @param int $post_ID
744  * @return unknown
745  */
746 function wp_get_post_cats($blogid = '1', $post_ID = 0) {
747         _deprecated_function( __FUNCTION__, '2.1', 'wp_get_post_categories()' );
748         return wp_get_post_categories($post_ID);
749 }
750
751 /**
752  * Sets the categories that the post id belongs to.
753  *
754  * @since 1.0.1
755  * @deprecated 2.1
756  * @deprecated Use wp_set_post_categories()
757  * @see wp_set_post_categories()
758  *
759  * @param int $blogid Not used
760  * @param int $post_ID
761  * @param array $post_categories
762  * @return unknown
763  */
764 function wp_set_post_cats($blogid = '1', $post_ID = 0, $post_categories = array()) {
765         _deprecated_function( __FUNCTION__, '2.1', 'wp_set_post_categories()' );
766         return wp_set_post_categories($post_ID, $post_categories);
767 }
768
769 /**
770  * @since 0.71
771  * @deprecated 2.1
772  * @deprecated Use wp_get_archives()
773  * @see wp_get_archives()
774  *
775  * @param string $type
776  * @param string $limit
777  * @param string $format
778  * @param string $before
779  * @param string $after
780  * @param bool $show_post_count
781  * @return unknown
782  */
783 function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) {
784         _deprecated_function( __FUNCTION__, '2.1', 'wp_get_archives()' );
785         $args = compact('type', 'limit', 'format', 'before', 'after', 'show_post_count');
786         return wp_get_archives($args);
787 }
788
789 /**
790  * Returns or Prints link to the author's posts.
791  *
792  * @since 1.2
793  * @deprecated 2.1
794  * @deprecated Use get_author_posts_url()
795  * @see get_author_posts_url()
796  *
797  * @param bool $echo Optional.
798  * @param int $author_id Required.
799  * @param string $author_nicename Optional.
800  * @return string|null
801  */
802 function get_author_link($echo = false, $author_id, $author_nicename = '') {
803         _deprecated_function( __FUNCTION__, '2.1', 'get_author_posts_url()' );
804
805         $link = get_author_posts_url($author_id, $author_nicename);
806
807         if ( $echo )
808                 echo $link;
809         return $link;
810 }
811
812 /**
813  * Print list of pages based on arguments.
814  *
815  * @since 0.71
816  * @deprecated 2.1
817  * @deprecated Use wp_link_pages()
818  * @see wp_link_pages()
819  *
820  * @param string $before
821  * @param string $after
822  * @param string $next_or_number
823  * @param string $nextpagelink
824  * @param string $previouspagelink
825  * @param string $pagelink
826  * @param string $more_file
827  * @return string
828  */
829 function link_pages($before='<br />', $after='<br />', $next_or_number='number', $nextpagelink='next page', $previouspagelink='previous page',
830                                         $pagelink='%', $more_file='') {
831         _deprecated_function( __FUNCTION__, '2.1', 'wp_link_pages()' );
832
833         $args = compact('before', 'after', 'next_or_number', 'nextpagelink', 'previouspagelink', 'pagelink', 'more_file');
834         return wp_link_pages($args);
835 }
836
837 /**
838  * Get value based on option.
839  *
840  * @since 0.71
841  * @deprecated 2.1
842  * @deprecated Use get_option()
843  * @see get_option()
844  *
845  * @param string $option
846  * @return string
847  */
848 function get_settings($option) {
849         _deprecated_function( __FUNCTION__, '2.1', 'get_option()' );
850
851         return get_option($option);
852 }
853
854 /**
855  * Print the permalink of the current post in the loop.
856  *
857  * @since 0.71
858  * @deprecated 1.2
859  * @deprecated Use the_permalink()
860  * @see the_permalink()
861  */
862 function permalink_link() {
863         _deprecated_function( __FUNCTION__, '1.2', 'the_permalink()' );
864         the_permalink();
865 }
866
867 /**
868  * Print the permalink to the RSS feed.
869  *
870  * @since 0.71
871  * @deprecated 2.3
872  * @deprecated Use the_permalink_rss()
873  * @see the_permalink_rss()
874  *
875  * @param string $deprecated
876  */
877 function permalink_single_rss($deprecated = '') {
878         _deprecated_function( __FUNCTION__, '2.3', 'the_permalink_rss()' );
879         the_permalink_rss();
880 }
881
882 /**
883  * Gets the links associated with category.
884  *
885  * @see get_links() for argument information that can be used in $args
886  * @since 1.0.1
887  * @deprecated 2.1
888  * @deprecated Use wp_list_bookmarks()
889  * @see wp_list_bookmarks()
890  *
891  * @param string $args a query string
892  * @return null|string
893  */
894 function wp_get_links($args = '') {
895         _deprecated_function( __FUNCTION__, '2.1', 'wp_list_bookmarks()' );
896
897         if ( strpos( $args, '=' ) === false ) {
898                 $cat_id = $args;
899                 $args = add_query_arg( 'category', $cat_id, $args );
900         }
901
902         $defaults = array(
903                 'after' => '<br />',
904                 'before' => '',
905                 'between' => ' ',
906                 'categorize' => 0,
907                 'category' => '',
908                 'echo' => true,
909                 'limit' => -1,
910                 'orderby' => 'name',
911                 'show_description' => true,
912                 'show_images' => true,
913                 'show_rating' => false,
914                 'show_updated' => true,
915                 'title_li' => '',
916         );
917
918         $r = wp_parse_args( $args, $defaults );
919
920         return wp_list_bookmarks($r);
921 }
922
923 /**
924  * Gets the links associated with category by id.
925  *
926  * @since 0.71
927  * @deprecated 2.1
928  * @deprecated Use get_bookmarks()
929  * @see get_bookmarks()
930  *
931  * @param int $category The category to use. If no category supplied uses all
932  * @param string $before the html to output before the link
933  * @param string $after the html to output after the link
934  * @param string $between the html to output between the link/image and its description.
935  *              Not used if no image or show_images == true
936  * @param bool $show_images whether to show images (if defined).
937  * @param string $orderby the order to output the links. E.g. 'id', 'name', 'url',
938  *              'description', or 'rating'. Or maybe owner. If you start the name with an
939  *              underscore the order will be reversed. You can also specify 'rand' as the order
940  *              which will return links in a random order.
941  * @param bool $show_description whether to show the description if show_images=false/not defined.
942  * @param bool $show_rating show rating stars/chars
943  * @param int $limit Limit to X entries. If not specified, all entries are shown.
944  * @param int $show_updated whether to show last updated timestamp
945  * @param bool $echo whether to echo the results, or return them instead
946  * @return null|string
947  */
948 function get_links($category = -1, $before = '', $after = '<br />', $between = ' ', $show_images = true, $orderby = 'name',
949                         $show_description = true, $show_rating = false, $limit = -1, $show_updated = 1, $echo = true) {
950         _deprecated_function( __FUNCTION__, '2.1', 'get_bookmarks()' );
951
952         $order = 'ASC';
953         if ( substr($orderby, 0, 1) == '_' ) {
954                 $order = 'DESC';
955                 $orderby = substr($orderby, 1);
956         }
957
958         if ( $category == -1 ) //get_bookmarks uses '' to signify all categories
959                 $category = '';
960
961         $results = get_bookmarks(array('category' => $category, 'orderby' => $orderby, 'order' => $order, 'show_updated' => $show_updated, 'limit' => $limit));
962
963         if ( !$results )
964                 return;
965
966         $output = '';
967
968         foreach ( (array) $results as $row ) {
969                 if ( !isset($row->recently_updated) )
970                         $row->recently_updated = false;
971                 $output .= $before;
972                 if ( $show_updated && $row->recently_updated )
973                         $output .= get_option('links_recently_updated_prepend');
974                 $the_link = '#';
975                 if ( !empty($row->link_url) )
976                         $the_link = esc_url($row->link_url);
977                 $rel = $row->link_rel;
978                 if ( '' != $rel )
979                         $rel = ' rel="' . $rel . '"';
980
981                 $desc = esc_attr(sanitize_bookmark_field('link_description', $row->link_description, $row->link_id, 'display'));
982                 $name = esc_attr(sanitize_bookmark_field('link_name', $row->link_name, $row->link_id, 'display'));
983                 $title = $desc;
984
985                 if ( $show_updated )
986                         if (substr($row->link_updated_f, 0, 2) != '00')
987                                 $title .= ' ('.__('Last updated') . ' ' . date(get_option('links_updated_date_format'), $row->link_updated_f + (get_option('gmt_offset') * 3600)) . ')';
988
989                 if ( '' != $title )
990                         $title = ' title="' . $title . '"';
991
992                 $alt = ' alt="' . $name . '"';
993
994                 $target = $row->link_target;
995                 if ( '' != $target )
996                         $target = ' target="' . $target . '"';
997
998                 $output .= '<a href="' . $the_link . '"' . $rel . $title . $target. '>';
999
1000                 if ( $row->link_image != null && $show_images ) {
1001                         if ( strpos($row->link_image, 'http') !== false )
1002                                 $output .= "<img src=\"$row->link_image\" $alt $title />";
1003                         else // If it's a relative path
1004                                 $output .= "<img src=\"" . get_option('siteurl') . "$row->link_image\" $alt $title />";
1005                 } else {
1006                         $output .= $name;
1007                 }
1008
1009                 $output .= '</a>';
1010
1011                 if ( $show_updated && $row->recently_updated )
1012                         $output .= get_option('links_recently_updated_append');
1013
1014                 if ( $show_description && '' != $desc )
1015                         $output .= $between . $desc;
1016
1017                 if ($show_rating) {
1018                         $output .= $between . get_linkrating($row);
1019                 }
1020
1021                 $output .= "$after\n";
1022         } // end while
1023
1024         if ( !$echo )
1025                 return $output;
1026         echo $output;
1027 }
1028
1029 /**
1030  * Output entire list of links by category.
1031  *
1032  * Output a list of all links, listed by category, using the settings in
1033  * $wpdb->linkcategories and output it as a nested HTML unordered list.
1034  *
1035  * @since 1.0.1
1036  * @deprecated 2.1
1037  * @deprecated Use wp_list_bookmarks()
1038  * @see wp_list_bookmarks()
1039  *
1040  * @param string $order Sort link categories by 'name' or 'id'
1041  */
1042 function get_links_list($order = 'name') {
1043         _deprecated_function( __FUNCTION__, '2.1', 'wp_list_bookmarks()' );
1044
1045         $order = strtolower($order);
1046
1047         // Handle link category sorting
1048         $direction = 'ASC';
1049         if ( '_' == substr($order,0,1) ) {
1050                 $direction = 'DESC';
1051                 $order = substr($order,1);
1052         }
1053
1054         if ( !isset($direction) )
1055                 $direction = '';
1056
1057         $cats = get_categories(array('type' => 'link', 'orderby' => $order, 'order' => $direction, 'hierarchical' => 0));
1058
1059         // Display each category
1060         if ( $cats ) {
1061                 foreach ( (array) $cats as $cat ) {
1062                         // Handle each category.
1063
1064                         // Display the category name
1065                         echo '  <li id="linkcat-' . $cat->term_id . '" class="linkcat"><h2>' . apply_filters('link_category', $cat->name ) . "</h2>\n\t<ul>\n";
1066                         // Call get_links() with all the appropriate params
1067                         get_links($cat->term_id, '<li>', "</li>", "\n", true, 'name', false);
1068
1069                         // Close the last category
1070                         echo "\n\t</ul>\n</li>\n";
1071                 }
1072         }
1073 }
1074
1075 /**
1076  * Show the link to the links popup and the number of links.
1077  *
1078  * @since 0.71
1079  * @deprecated 2.1
1080  * @deprecated {@internal Use function instead is unknown}}
1081  *
1082  * @param string $text the text of the link
1083  * @param int $width the width of the popup window
1084  * @param int $height the height of the popup window
1085  * @param string $file the page to open in the popup window
1086  * @param bool $count the number of links in the db
1087  */
1088 function links_popup_script($text = 'Links', $width=400, $height=400, $file='links.all.php', $count = true) {
1089         _deprecated_function( __FUNCTION__, '2.1' );
1090
1091         if ( $count )
1092                 $counts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links");
1093
1094         $javascript = "<a href=\"#\" onclick=\"javascript:window.open('$file?popup=1', '_blank', 'width=$width,height=$height,scrollbars=yes,status=no'); return false\">";
1095         $javascript .= $text;
1096
1097         if ( $count )
1098                 $javascript .= " ($counts)";
1099
1100         $javascript .= "</a>\n\n";
1101                 echo $javascript;
1102 }
1103
1104 /**
1105  * @since 1.0.1
1106  * @deprecated 2.1
1107  * @deprecated Use sanitize_bookmark_field()
1108  * @see sanitize_bookmark_field()
1109  *
1110  * @param object $link
1111  * @return unknown
1112  */
1113 function get_linkrating($link) {
1114         _deprecated_function( __FUNCTION__, '2.1', 'sanitize_bookmark_field()' );
1115         return sanitize_bookmark_field('link_rating', $link->link_rating, $link->link_id, 'display');
1116 }
1117
1118 /**
1119  * Gets the name of category by id.
1120  *
1121  * @since 0.71
1122  * @deprecated 2.1
1123  * @deprecated Use get_category()
1124  * @see get_category()
1125  *
1126  * @param int $id The category to get. If no category supplied uses 0
1127  * @return string
1128  */
1129 function get_linkcatname($id = 0) {
1130         _deprecated_function( __FUNCTION__, '2.1', 'get_category()' );
1131
1132         $id = (int) $id;
1133
1134         if ( empty($id) )
1135                 return '';
1136
1137         $cats = wp_get_link_cats($id);
1138
1139         if ( empty($cats) || ! is_array($cats) )
1140                 return '';
1141
1142         $cat_id = (int) $cats[0]; // Take the first cat.
1143
1144         $cat = get_category($cat_id);
1145         return $cat->name;
1146 }
1147
1148 /**
1149  * Print RSS comment feed link.
1150  *
1151  * @since 1.0.1
1152  * @deprecated 2.5
1153  * @deprecated Use post_comments_feed_link()
1154  * @see post_comments_feed_link()
1155  *
1156  * @param string $link_text
1157  */
1158 function comments_rss_link($link_text = 'Comments RSS') {
1159         _deprecated_function( __FUNCTION__, '2.5', 'post_comments_feed_link()' );
1160         post_comments_feed_link($link_text);
1161 }
1162
1163 /**
1164  * Print/Return link to category RSS2 feed.
1165  *
1166  * @since 1.2
1167  * @deprecated 2.5
1168  * @deprecated Use get_category_feed_link()
1169  * @see get_category_feed_link()
1170  *
1171  * @param bool $echo
1172  * @param int $cat_ID
1173  * @return string|null
1174  */
1175 function get_category_rss_link($echo = false, $cat_ID = 1) {
1176         _deprecated_function( __FUNCTION__, '2.5', 'get_category_feed_link()' );
1177
1178         $link = get_category_feed_link($cat_ID, 'rss2');
1179
1180         if ( $echo )
1181                 echo $link;
1182         return $link;
1183 }
1184
1185 /**
1186  * Print/Return link to author RSS feed.
1187  *
1188  * @since 1.2
1189  * @deprecated 2.5
1190  * @deprecated Use get_author_feed_link()
1191  * @see get_author_feed_link()
1192  *
1193  * @param bool $echo
1194  * @param int $author_id
1195  * @return string|null
1196  */
1197 function get_author_rss_link($echo = false, $author_id = 1) {
1198         _deprecated_function( __FUNCTION__, '2.5', 'get_author_feed_link()' );
1199
1200         $link = get_author_feed_link($author_id);
1201         if ( $echo )
1202                 echo $link;
1203         return $link;
1204 }
1205
1206 /**
1207  * Return link to the post RSS feed.
1208  *
1209  * @since 1.5
1210  * @deprecated 2.2
1211  * @deprecated Use get_post_comments_feed_link()
1212  * @see get_post_comments_feed_link()
1213  *
1214  * @return string
1215  */
1216 function comments_rss() {
1217         _deprecated_function( __FUNCTION__, '2.2', 'get_post_comments_feed_link()' );
1218         return get_post_comments_feed_link();
1219 }
1220
1221 /**
1222  * An alias of wp_create_user().
1223  *
1224  * @since 2.0
1225  * @deprecated 2.0
1226  * @deprecated Use wp_create_user()
1227  * @see wp_create_user()
1228  *
1229  * @param string $username The user's username.
1230  * @param string $password The user's password.
1231  * @param string $email The user's email (optional).
1232  * @return int The new user's ID.
1233  */
1234 function create_user($username, $password, $email) {
1235         _deprecated_function( __FUNCTION__, '2.0', 'wp_create_user()' );
1236         return wp_create_user($username, $password, $email);
1237 }
1238
1239 /**
1240  * Unused function.
1241  *
1242  * @deprecated 2.5
1243 */
1244 function gzip_compression() {
1245         _deprecated_function( __FUNCTION__, '2.5' );
1246         return false;
1247 }
1248
1249 /**
1250  * Retrieve an array of comment data about comment $comment_ID.
1251  *
1252  * @since 0.71
1253  * @deprecated 2.7
1254  * @deprecated Use get_comment()
1255  * @see get_comment()
1256  *
1257  * @param int $comment_ID The ID of the comment
1258  * @param int $no_cache Whether to use the cache (cast to bool)
1259  * @param bool $include_unapproved Whether to include unapproved comments
1260  * @return array The comment data
1261  */
1262 function get_commentdata( $comment_ID, $no_cache = 0, $include_unapproved = false ) {
1263         _deprecated_function( __FUNCTION__, '2.7', 'get_comment()' );
1264         return get_comment($comment_ID, ARRAY_A);
1265 }
1266
1267 /**
1268  * Retrieve the category name by the category ID.
1269  *
1270  * @since 0.71
1271  * @deprecated 2.8
1272  * @deprecated Use get_cat_name()
1273  * @see get_cat_name()
1274  *
1275  * @param int $cat_ID Category ID
1276  * @return string category name
1277  */
1278 function get_catname( $cat_ID ) {
1279         _deprecated_function( __FUNCTION__, '2.8', 'get_cat_name()' );
1280         return get_cat_name( $cat_ID );
1281 }
1282
1283 /**
1284  * Retrieve category children list separated before and after the term IDs.
1285  *
1286  * @since 1.2.0
1287  * @deprecated 2.8
1288  * @deprecated Use get_term_children()
1289  * @see get_term_children()
1290  *
1291  * @param int $id Category ID to retrieve children.
1292  * @param string $before Optional. Prepend before category term ID.
1293  * @param string $after Optional, default is empty string. Append after category term ID.
1294  * @param array $visited Optional. Category Term IDs that have already been added.
1295  * @return string
1296  */
1297 function get_category_children( $id, $before = '/', $after = '', $visited = array() ) {
1298         _deprecated_function( __FUNCTION__, '2.8', 'get_term_children()' );
1299         if ( 0 == $id )
1300                 return '';
1301
1302         $chain = '';
1303         /** TODO: consult hierarchy */
1304         $cat_ids = get_all_category_ids();
1305         foreach ( (array) $cat_ids as $cat_id ) {
1306                 if ( $cat_id == $id )
1307                         continue;
1308
1309                 $category = get_category( $cat_id );
1310                 if ( is_wp_error( $category ) )
1311                         return $category;
1312                 if ( $category->parent == $id && !in_array( $category->term_id, $visited ) ) {
1313                         $visited[] = $category->term_id;
1314                         $chain .= $before.$category->term_id.$after;
1315                         $chain .= get_category_children( $category->term_id, $before, $after );
1316                 }
1317         }
1318         return $chain;
1319 }
1320
1321 /**
1322  * Retrieve the description of the author of the current post.
1323  *
1324  * @since 1.5
1325  * @deprecated 2.8
1326  * @deprecated Use get_the_author_meta('description')
1327  * @see get_the_author_meta()
1328  *
1329  * @return string The author's description.
1330  */
1331 function get_the_author_description() {
1332         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'description\')' );
1333         return get_the_author_meta('description');
1334 }
1335
1336 /**
1337  * Display the description of the author of the current post.
1338  *
1339  * @since 1.0.0
1340  * @deprecated 2.8
1341  * @deprecated Use the_author_meta('description')
1342  * @see the_author_meta()
1343  */
1344 function the_author_description() {
1345         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'description\')' );
1346         the_author_meta('description');
1347 }
1348
1349 /**
1350  * Retrieve the login name of the author of the current post.
1351  *
1352  * @since 1.5
1353  * @deprecated 2.8
1354  * @deprecated Use get_the_author_meta('login')
1355  * @see get_the_author_meta()
1356  *
1357  * @return string The author's login name (username).
1358  */
1359 function get_the_author_login() {
1360         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'login\')' );
1361         return get_the_author_meta('login');
1362 }
1363
1364 /**
1365  * Display the login name of the author of the current post.
1366  *
1367  * @since 0.71
1368  * @deprecated 2.8
1369  * @deprecated Use the_author_meta('login')
1370  * @see the_author_meta()
1371  */
1372 function the_author_login() {
1373         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'login\')' );
1374         the_author_meta('login');
1375 }
1376
1377 /**
1378  * Retrieve the first name of the author of the current post.
1379  *
1380  * @since 1.5
1381  * @deprecated 2.8
1382  * @deprecated Use get_the_author_meta('first_name')
1383  * @see get_the_author_meta()
1384  *
1385  * @return string The author's first name.
1386  */
1387 function get_the_author_firstname() {
1388         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'first_name\')' );
1389         return get_the_author_meta('first_name');
1390 }
1391
1392 /**
1393  * Display the first name of the author of the current post.
1394  *
1395  * @since 0.71
1396  * @deprecated 2.8
1397  * @deprecated Use the_author_meta('first_name')
1398  * @see the_author_meta()
1399  */
1400 function the_author_firstname() {
1401         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'first_name\')' );
1402         the_author_meta('first_name');
1403 }
1404
1405 /**
1406  * Retrieve the last name of the author of the current post.
1407  *
1408  * @since 1.5
1409  * @deprecated 2.8
1410  * @deprecated Use get_the_author_meta('last_name')
1411  * @see get_the_author_meta()
1412  *
1413  * @return string The author's last name.
1414  */
1415 function get_the_author_lastname() {
1416         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'last_name\')' );
1417         return get_the_author_meta('last_name');
1418 }
1419
1420 /**
1421  * Display the last name of the author of the current post.
1422  *
1423  * @since 0.71
1424  * @deprecated 2.8
1425  * @deprecated Use the_author_meta('last_name')
1426  * @see the_author_meta()
1427  */
1428 function the_author_lastname() {
1429         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'last_name\')' );
1430         the_author_meta('last_name');
1431 }
1432
1433 /**
1434  * Retrieve the nickname of the author of the current post.
1435  *
1436  * @since 1.5
1437  * @deprecated 2.8
1438  * @deprecated Use get_the_author_meta('nickname')
1439  * @see get_the_author_meta()
1440  *
1441  * @return string The author's nickname.
1442  */
1443 function get_the_author_nickname() {
1444         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'nickname\')' );
1445         return get_the_author_meta('nickname');
1446 }
1447
1448 /**
1449  * Display the nickname of the author of the current post.
1450  *
1451  * @since 0.71
1452  * @deprecated 2.8
1453  * @deprecated Use the_author_meta('nickname')
1454  * @see the_author_meta()
1455  */
1456 function the_author_nickname() {
1457         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'nickname\')' );
1458         the_author_meta('nickname');
1459 }
1460
1461 /**
1462  * Retrieve the email of the author of the current post.
1463  *
1464  * @since 1.5
1465  * @deprecated 2.8
1466  * @deprecated Use get_the_author_meta('email')
1467  * @see get_the_author_meta()
1468  *
1469  * @return string The author's username.
1470  */
1471 function get_the_author_email() {
1472         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'email\')' );
1473         return get_the_author_meta('email');
1474 }
1475
1476 /**
1477  * Display the email of the author of the current post.
1478  *
1479  * @since 0.71
1480  * @deprecated 2.8
1481  * @deprecated Use the_author_meta('email')
1482  * @see the_author_meta()
1483  */
1484 function the_author_email() {
1485         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'email\')' );
1486         the_author_meta('email');
1487 }
1488
1489 /**
1490  * Retrieve the ICQ number of the author of the current post.
1491  *
1492  * @since 1.5
1493  * @deprecated 2.8
1494  * @deprecated Use get_the_author_meta('icq')
1495  * @see get_the_author_meta()
1496  *
1497  * @return string The author's ICQ number.
1498  */
1499 function get_the_author_icq() {
1500         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'icq\')' );
1501         return get_the_author_meta('icq');
1502 }
1503
1504 /**
1505  * Display the ICQ number of the author of the current post.
1506  *
1507  * @since 0.71
1508  * @deprecated 2.8
1509  * @deprecated Use the_author_meta('icq')
1510  * @see the_author_meta()
1511  */
1512 function the_author_icq() {
1513         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'icq\')' );
1514         the_author_meta('icq');
1515 }
1516
1517 /**
1518  * Retrieve the Yahoo! IM name of the author of the current post.
1519  *
1520  * @since 1.5
1521  * @deprecated 2.8
1522  * @deprecated Use get_the_author_meta('yim')
1523  * @see get_the_author_meta()
1524  *
1525  * @return string The author's Yahoo! IM name.
1526  */
1527 function get_the_author_yim() {
1528         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'yim\')' );
1529         return get_the_author_meta('yim');
1530 }
1531
1532 /**
1533  * Display the Yahoo! IM name of the author of the current post.
1534  *
1535  * @since 0.71
1536  * @deprecated 2.8
1537  * @deprecated Use the_author_meta('yim')
1538  * @see the_author_meta()
1539  */
1540 function the_author_yim() {
1541         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'yim\')' );
1542         the_author_meta('yim');
1543 }
1544
1545 /**
1546  * Retrieve the MSN address of the author of the current post.
1547  *
1548  * @since 1.5
1549  * @deprecated 2.8
1550  * @deprecated Use get_the_author_meta('msn')
1551  * @see get_the_author_meta()
1552  *
1553  * @return string The author's MSN address.
1554  */
1555 function get_the_author_msn() {
1556         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'msn\')' );
1557         return get_the_author_meta('msn');
1558 }
1559
1560 /**
1561  * Display the MSN address of the author of the current post.
1562  *
1563  * @since 0.71
1564  * @deprecated 2.8
1565  * @deprecated Use the_author_meta('msn')
1566  * @see the_author_meta()
1567  */
1568 function the_author_msn() {
1569         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'msn\')' );
1570         the_author_meta('msn');
1571 }
1572
1573 /**
1574  * Retrieve the AIM address of the author of the current post.
1575  *
1576  * @since 1.5
1577  * @deprecated 2.8
1578  * @deprecated Use get_the_author_meta('aim')
1579  * @see get_the_author_meta()
1580  *
1581  * @return string The author's AIM address.
1582  */
1583 function get_the_author_aim() {
1584         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'aim\')' );
1585         return get_the_author_meta('aim');
1586 }
1587
1588 /**
1589  * Display the AIM address of the author of the current post.
1590  *
1591  * @since 0.71
1592  * @see the_author_meta()
1593  * @deprecated 2.8
1594  * @deprecated Use the_author_meta('aim')
1595  */
1596 function the_author_aim() {
1597         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'aim\')' );
1598         the_author_meta('aim');
1599 }
1600
1601 /**
1602  * Retrieve the specified author's preferred display name.
1603  *
1604  * @since 1.0.0
1605  * @deprecated 2.8
1606  * @deprecated Use get_the_author_meta('display_name')
1607  * @see get_the_author_meta()
1608  *
1609  * @param int $auth_id The ID of the author.
1610  * @return string The author's display name.
1611  */
1612 function get_author_name( $auth_id = false ) {
1613         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'display_name\')' );
1614         return get_the_author_meta('display_name', $auth_id);
1615 }
1616
1617 /**
1618  * Retrieve the URL to the home page of the author of the current post.
1619  *
1620  * @since 1.5
1621  * @deprecated 2.8
1622  * @deprecated Use get_the_author_meta('url')
1623  * @see get_the_author_meta()
1624  *
1625  * @return string The URL to the author's page.
1626  */
1627 function get_the_author_url() {
1628         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'url\')' );
1629         return get_the_author_meta('url');
1630 }
1631
1632 /**
1633  * Display the URL to the home page of the author of the current post.
1634  *
1635  * @since 0.71
1636  * @deprecated 2.8
1637  * @deprecated Use the_author_meta('url')
1638  * @see the_author_meta()
1639  */
1640 function the_author_url() {
1641         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'url\')' );
1642         the_author_meta('url');
1643 }
1644
1645 /**
1646  * Retrieve the ID of the author of the current post.
1647  *
1648  * @since 1.5
1649  * @deprecated 2.8
1650  * @deprecated Use get_the_author_meta('ID')
1651  * @see get_the_author_meta()
1652  *
1653  * @return int The author's ID.
1654  */
1655 function get_the_author_ID() {
1656         _deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'ID\')' );
1657         return get_the_author_meta('ID');
1658 }
1659
1660 /**
1661  * Display the ID of the author of the current post.
1662  *
1663  * @since 0.71
1664  * @deprecated 2.8
1665  * @deprecated Use the_author_meta('ID')
1666  * @see the_author_meta()
1667 */
1668 function the_author_ID() {
1669         _deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'ID\')' );
1670         the_author_meta('ID');
1671 }
1672
1673 /**
1674  * Display the post content for the feed.
1675  *
1676  * For encoding the html or the $encode_html parameter, there are three possible
1677  * values. '0' will make urls footnotes and use make_url_footnote(). '1' will
1678  * encode special characters and automatically display all of the content. The
1679  * value of '2' will strip all HTML tags from the content.
1680  *
1681  * Also note that you cannot set the amount of words and not set the html
1682  * encoding. If that is the case, then the html encoding will default to 2,
1683  * which will strip all HTML tags.
1684  *
1685  * To restrict the amount of words of the content, you can use the cut
1686  * parameter. If the content is less than the amount, then there won't be any
1687  * dots added to the end. If there is content left over, then dots will be added
1688  * and the rest of the content will be removed.
1689  *
1690  * @package WordPress
1691  * @subpackage Feed
1692  * @since 0.71
1693  * @uses apply_filters() Calls 'the_content_rss' on the content before processing.
1694  * @see get_the_content() For the $more_link_text, $stripteaser, and $more_file
1695  *              parameters.
1696  *
1697  * @deprecated 2.9.0
1698  * @deprecated Use the_content_feed()
1699  * @see the_content_feed()
1700  *
1701  * @param string $more_link_text Optional. Text to display when more content is available but not displayed.
1702  * @param int|bool $stripteaser Optional. Default is 0.
1703  * @param string $more_file Optional.
1704  * @param int $cut Optional. Amount of words to keep for the content.
1705  * @param int $encode_html Optional. How to encode the content.
1706  */
1707 function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) {
1708         _deprecated_function( __FUNCTION__, '2.9', 'the_content_feed' );
1709         $content = get_the_content($more_link_text, $stripteaser, $more_file);
1710         $content = apply_filters('the_content_rss', $content);
1711         if ( $cut && !$encode_html )
1712                 $encode_html = 2;
1713         if ( 1== $encode_html ) {
1714                 $content = esc_html($content);
1715                 $cut = 0;
1716         } elseif ( 0 == $encode_html ) {
1717                 $content = make_url_footnote($content);
1718         } elseif ( 2 == $encode_html ) {
1719                 $content = strip_tags($content);
1720         }
1721         if ( $cut ) {
1722                 $blah = explode(' ', $content);
1723                 if ( count($blah) > $cut ) {
1724                         $k = $cut;
1725                         $use_dotdotdot = 1;
1726                 } else {
1727                         $k = count($blah);
1728                         $use_dotdotdot = 0;
1729                 }
1730
1731                 /** @todo Check performance, might be faster to use array slice instead. */
1732                 for ( $i=0; $i<$k; $i++ )
1733                         $excerpt .= $blah[$i].' ';
1734                 $excerpt .= ($use_dotdotdot) ? '...' : '';
1735                 $content = $excerpt;
1736         }
1737         $content = str_replace(']]>', ']]&gt;', $content);
1738         echo $content;
1739 }
1740
1741 /**
1742  * Strip HTML and put links at the bottom of stripped content.
1743  *
1744  * Searches for all of the links, strips them out of the content, and places
1745  * them at the bottom of the content with numbers.
1746  *
1747  * @since 0.71
1748  * @deprecated 2.9.0
1749  *
1750  * @param string $content Content to get links
1751  * @return string HTML stripped out of content with links at the bottom.
1752  */
1753 function make_url_footnote( $content ) {
1754         _deprecated_function( __FUNCTION__, '2.9', '' );
1755         preg_match_all( '/<a(.+?)href=\"(.+?)\"(.*?)>(.+?)<\/a>/', $content, $matches );
1756         $links_summary = "\n";
1757         for ( $i=0; $i<count($matches[0]); $i++ ) {
1758                 $link_match = $matches[0][$i];
1759                 $link_number = '['.($i+1).']';
1760                 $link_url = $matches[2][$i];
1761                 $link_text = $matches[4][$i];
1762                 $content = str_replace( $link_match, $link_text . ' ' . $link_number, $content );
1763                 $link_url = ( ( strtolower( substr( $link_url, 0, 7 ) ) != 'http://' ) && ( strtolower( substr( $link_url, 0, 8 ) ) != 'https://' ) ) ? get_option( 'home' ) . $link_url : $link_url;
1764                 $links_summary .= "\n" . $link_number . ' ' . $link_url;
1765         }
1766         $content  = strip_tags( $content );
1767         $content .= $links_summary;
1768         return $content;
1769 }
1770
1771 /**
1772  * Retrieve translated string with vertical bar context
1773  *
1774  * Quite a few times, there will be collisions with similar translatable text
1775  * found in more than two places but with different translated context.
1776  *
1777  * In order to use the separate contexts, the _c() function is used and the
1778  * translatable string uses a pipe ('|') which has the context the string is in.
1779  *
1780  * When the translated string is returned, it is everything before the pipe, not
1781  * including the pipe character. If there is no pipe in the translated text then
1782  * everything is returned.
1783  *
1784  * @since 2.2.0
1785  * @deprecated 2.9.0
1786  * @deprecated Use _x()
1787  * @see _x()
1788  *
1789  * @param string $text Text to translate
1790  * @param string $domain Optional. Domain to retrieve the translated text
1791  * @return string Translated context string without pipe
1792  */
1793 function _c( $text, $domain = 'default' ) {
1794         _deprecated_function( __FUNCTION__, '2.9', '_x()' );
1795         return before_last_bar( translate( $text, $domain ) );
1796 }
1797
1798 /**
1799  * Translates $text like translate(), but assumes that the text
1800  * contains a context after its last vertical bar.
1801  *
1802  * @since 2.5
1803  * @uses translate()
1804  * @deprecated 3.0.0
1805  * @deprecated Use _x()
1806  * @see _x()
1807  *
1808  * @param string $text Text to translate
1809  * @param string $domain Domain to retrieve the translated text
1810  * @return string Translated text
1811  */
1812 function translate_with_context( $text, $domain = 'default' ) {
1813         _deprecated_function( __FUNCTION__, '2.9', '_x()' );
1814         return before_last_bar( translate( $text, $domain ) );
1815 }
1816
1817 /**
1818  * A version of _n(), which supports contexts.
1819  * Strips everything from the translation after the last bar.
1820  *
1821  * @since 2.7.0
1822  * @deprecated 3.0.0
1823  * @deprecated Use _nx()
1824  * @see _nx()
1825  * @see _n() For parameters.
1826  * @see _c() For parameters. _c() is deprecated.
1827  *
1828  */
1829 function _nc( $single, $plural, $number, $domain = 'default' ) {
1830         _deprecated_function( __FUNCTION__, '2.9', '_nx()' );
1831         return before_last_bar( _n( $single, $plural, $number, $domain ) );
1832 }
1833
1834 /**
1835  * Retrieve the plural or single form based on the amount.
1836  *
1837  * @since 1.2.0
1838  * @deprecated 2.8.0
1839  * @deprecated Use _n()
1840  * @see _n()
1841  */
1842 function __ngettext() {
1843         _deprecated_function( __FUNCTION__, '2.8', '_n()' );
1844         $args = func_get_args();
1845         return call_user_func_array('_n', $args);
1846 }
1847
1848 /**
1849  * Register plural strings in POT file, but don't translate them.
1850  *
1851  * @since 2.5
1852  * @deprecated 2.8.0
1853  * @deprecated Use _n_noop()
1854  * @see _n_noop()
1855  */
1856 function __ngettext_noop() {
1857         _deprecated_function( __FUNCTION__, '2.8', '_n_noop()' );
1858         $args = func_get_args();
1859         return call_user_func_array('_n_noop', $args);
1860
1861 }
1862
1863 /**
1864  * Retrieve all autoload options, or all options if no autoloaded ones exist.
1865  *
1866  * @since 1.0.0
1867  * @deprecated 3.0.0
1868  * @deprecated Use wp_load_alloptions())
1869  * @see wp_load_alloptions()
1870  *
1871  * @return array List of all options.
1872  */
1873 function get_alloptions() {
1874         _deprecated_function( __FUNCTION__, '3.0', 'wp_load_alloptions()' );
1875         return wp_load_alloptions();
1876 }
1877
1878 /**
1879  * Retrieve HTML content of attachment image with link.
1880  *
1881  * @since 2.0.0
1882  * @deprecated 2.5.0
1883  * @deprecated Use wp_get_attachment_link()
1884  * @see wp_get_attachment_link()
1885  *
1886  * @param int $id Optional. Post ID.
1887  * @param bool $fullsize Optional, default is false. Whether to use full size image.
1888  * @param array $max_dims Optional. Max image dimensions.
1889  * @param bool $permalink Optional, default is false. Whether to include permalink to image.
1890  * @return string
1891  */
1892 function get_the_attachment_link($id = 0, $fullsize = false, $max_dims = false, $permalink = false) {
1893         _deprecated_function( __FUNCTION__, '2.5', 'wp_get_attachment_link()' );
1894         $id = (int) $id;
1895         $_post = & get_post($id);
1896
1897         if ( ('attachment' != $_post->post_type) || !$url = wp_get_attachment_url($_post->ID) )
1898                 return __('Missing Attachment');
1899
1900         if ( $permalink )
1901                 $url = get_attachment_link($_post->ID);
1902
1903         $post_title = esc_attr($_post->post_title);
1904
1905         $innerHTML = get_attachment_innerHTML($_post->ID, $fullsize, $max_dims);
1906         return "<a href='$url' title='$post_title'>$innerHTML</a>";
1907 }
1908
1909 /**
1910  * Retrieve icon URL and Path.
1911  *
1912  * @since 2.1.0
1913  * @deprecated 2.5.0
1914  * @deprecated Use wp_get_attachment_image_src()
1915  * @see wp_get_attachment_image_src()
1916  *
1917  * @param int $id Optional. Post ID.
1918  * @param bool $fullsize Optional, default to false. Whether to have full image.
1919  * @return array Icon URL and full path to file, respectively.
1920  */
1921 function get_attachment_icon_src( $id = 0, $fullsize = false ) {
1922         _deprecated_function( __FUNCTION__, '2.5', 'wp_get_attachment_image_src()' );
1923         $id = (int) $id;
1924         if ( !$post = & get_post($id) )
1925                 return false;
1926
1927         $file = get_attached_file( $post->ID );
1928
1929         if ( !$fullsize && $src = wp_get_attachment_thumb_url( $post->ID ) ) {
1930                 // We have a thumbnail desired, specified and existing
1931
1932                 $src_file = basename($src);
1933                 $class = 'attachmentthumb';
1934         } elseif ( wp_attachment_is_image( $post->ID ) ) {
1935                 // We have an image without a thumbnail
1936
1937                 $src = wp_get_attachment_url( $post->ID );
1938                 $src_file = & $file;
1939                 $class = 'attachmentimage';
1940         } elseif ( $src = wp_mime_type_icon( $post->ID ) ) {
1941                 // No thumb, no image. We'll look for a mime-related icon instead.
1942
1943                 $icon_dir = apply_filters( 'icon_dir', get_template_directory() . '/images' );
1944                 $src_file = $icon_dir . '/' . basename($src);
1945         }
1946
1947         if ( !isset($src) || !$src )
1948                 return false;
1949
1950         return array($src, $src_file);
1951 }
1952
1953 /**
1954  * Retrieve HTML content of icon attachment image element.
1955  *
1956  * @since 2.0.0
1957  * @deprecated 2.5.0
1958  * @deprecated Use wp_get_attachment_image()
1959  * @see wp_get_attachment_image()
1960  *
1961  * @param int $id Optional. Post ID.
1962  * @param bool $fullsize Optional, default to false. Whether to have full size image.
1963  * @param array $max_dims Optional. Dimensions of image.
1964  * @return string HTML content.
1965  */
1966 function get_attachment_icon( $id = 0, $fullsize = false, $max_dims = false ) {
1967         _deprecated_function( __FUNCTION__, '2.5', 'wp_get_attachment_image()' );
1968         $id = (int) $id;
1969         if ( !$post = & get_post($id) )
1970                 return false;
1971
1972         if ( !$src = get_attachment_icon_src( $post->ID, $fullsize ) )
1973                 return false;
1974
1975         list($src, $src_file) = $src;
1976
1977         // Do we need to constrain the image?
1978         if ( ($max_dims = apply_filters('attachment_max_dims', $max_dims)) && file_exists($src_file) ) {
1979
1980                 $imagesize = getimagesize($src_file);
1981
1982                 if (($imagesize[0] > $max_dims[0]) || $imagesize[1] > $max_dims[1] ) {
1983                         $actual_aspect = $imagesize[0] / $imagesize[1];
1984                         $desired_aspect = $max_dims[0] / $max_dims[1];
1985
1986                         if ( $actual_aspect >= $desired_aspect ) {
1987                                 $height = $actual_aspect * $max_dims[0];
1988                                 $constraint = "width='{$max_dims[0]}' ";
1989                                 $post->iconsize = array($max_dims[0], $height);
1990                         } else {
1991                                 $width = $max_dims[1] / $actual_aspect;
1992                                 $constraint = "height='{$max_dims[1]}' ";
1993                                 $post->iconsize = array($width, $max_dims[1]);
1994                         }
1995                 } else {
1996                         $post->iconsize = array($imagesize[0], $imagesize[1]);
1997                         $constraint = '';
1998                 }
1999         } else {
2000                 $constraint = '';
2001         }
2002
2003         $post_title = esc_attr($post->post_title);
2004
2005         $icon = "<img src='$src' title='$post_title' alt='$post_title' $constraint/>";
2006
2007         return apply_filters( 'attachment_icon', $icon, $post->ID );
2008 }
2009
2010 /**
2011  * Retrieve HTML content of image element.
2012  *
2013  * @since 2.0.0
2014  * @deprecated 2.5.0
2015  * @deprecated Use wp_get_attachment_image()
2016  * @see wp_get_attachment_image()
2017  *
2018  * @param int $id Optional. Post ID.
2019  * @param bool $fullsize Optional, default to false. Whether to have full size image.
2020  * @param array $max_dims Optional. Dimensions of image.
2021  * @return string
2022  */
2023 function get_attachment_innerHTML($id = 0, $fullsize = false, $max_dims = false) {
2024         _deprecated_function( __FUNCTION__, '2.5', 'wp_get_attachment_image()' );
2025         $id = (int) $id;
2026         if ( !$post = & get_post($id) )
2027                 return false;
2028
2029         if ( $innerHTML = get_attachment_icon($post->ID, $fullsize, $max_dims))
2030                 return $innerHTML;
2031
2032         $innerHTML = esc_attr($post->post_title);
2033
2034         return apply_filters('attachment_innerHTML', $innerHTML, $post->ID);
2035 }
2036
2037 /**
2038  * Retrieve bookmark data based on ID.
2039  *
2040  * @since 2.0.0
2041  * @deprecated 2.1.0
2042  * @deprecated Use get_bookmark()
2043  * @see get_bookmark()
2044  *
2045  * @param int $bookmark_id ID of link
2046  * @param string $output OBJECT, ARRAY_N, or ARRAY_A
2047  * @return object|array
2048  */
2049 function get_link($bookmark_id, $output = OBJECT, $filter = 'raw') {
2050         _deprecated_function( __FUNCTION__, '2.1', 'get_bookmark()' );
2051         return get_bookmark($bookmark_id, $output, $filter);
2052 }
2053
2054 /**
2055  * Performs esc_url() for database or redirect usage.
2056  *
2057  * @since 2.3.1
2058  * @deprecated 2.8.0
2059  * @deprecated Use esc_url_raw()
2060  * @see esc_url_raw()
2061  *
2062  * @param string $url The URL to be cleaned.
2063  * @param array $protocols An array of acceptable protocols.
2064  * @return string The cleaned URL.
2065  */
2066 function sanitize_url( $url, $protocols = null ) {
2067         _deprecated_function( __FUNCTION__, '2.8', 'esc_url_raw()' );
2068         return esc_url_raw( $url, $protocols );
2069 }
2070
2071 /**
2072  * Checks and cleans a URL.
2073  *
2074  * A number of characters are removed from the URL. If the URL is for displaying
2075  * (the default behaviour) ampersands are also replaced. The 'clean_url' filter
2076  * is applied to the returned cleaned URL.
2077  *
2078  * @since 1.2.0
2079  * @deprecated 3.0.0
2080  * @deprecated Use esc_url()
2081  * @see Alias for esc_url()
2082  *
2083  * @param string $url The URL to be cleaned.
2084  * @param array $protocols Optional. An array of acceptable protocols.
2085  * @param string $context Optional. How the URL will be used. Default is 'display'.
2086  * @return string The cleaned $url after the 'clean_url' filter is applied.
2087  */
2088 function clean_url( $url, $protocols = null, $context = 'display' ) {
2089         if ( $context == 'db' )
2090                 _deprecated_function( 'clean_url( $context = \'db\' )', '3.0', 'esc_url_raw()' );
2091         else
2092                 _deprecated_function( __FUNCTION__, '3.0', 'esc_url()' );
2093         return esc_url( $url, $protocols, $context );
2094 }
2095
2096 /**
2097  * Escape single quotes, specialchar double quotes, and fix line endings.
2098  *
2099  * The filter 'js_escape' is also applied by esc_js()
2100  *
2101  * @since 2.0.4
2102  * @deprecated 2.8.0
2103  * @deprecated Use esc_js()
2104  * @see esc_js()
2105  *
2106  * @param string $text The text to be escaped.
2107  * @return string Escaped text.
2108  */
2109 function js_escape( $text ) {
2110         _deprecated_function( __FUNCTION__, '2.8', 'esc_js()' );
2111         return esc_js( $text );
2112 }
2113
2114 /**
2115  * Escaping for HTML blocks.
2116  *
2117  * @deprecated 2.8.0
2118  * @deprecated Use esc_html()
2119  * @see esc_html()
2120  */
2121 function wp_specialchars( $string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) {
2122         _deprecated_function( __FUNCTION__, '2.8', 'esc_html()' );
2123         if ( func_num_args() > 1 ) { // Maintain backwards compat for people passing additional args
2124                 $args = func_get_args();
2125                 return call_user_func_array( '_wp_specialchars', $args );
2126         } else {
2127                 return esc_html( $string );
2128         }
2129 }
2130
2131 /**
2132  * Escaping for HTML attributes.
2133  *
2134  * @since 2.0.6
2135  * @deprecated 2.8.0
2136  * @deprecated Use esc_attr()
2137  * @see esc_attr()
2138  *
2139  * @param string $text
2140  * @return string
2141  */
2142 function attribute_escape( $text ) {
2143         _deprecated_function( __FUNCTION__, '2.8', 'esc_attr()' );
2144         return esc_attr( $text );
2145 }
2146
2147 /**
2148  * Register widget for sidebar with backwards compatibility.
2149  *
2150  * Allows $name to be an array that accepts either three elements to grab the
2151  * first element and the third for the name or just uses the first element of
2152  * the array for the name.
2153  *
2154  * Passes to {@link wp_register_sidebar_widget()} after argument list and
2155  * backwards compatibility is complete.
2156  *
2157  * @since 2.2.0
2158  * @deprecated 2.8.0
2159  * @deprecated Use wp_register_sidebar_widget()
2160  * @see wp_register_sidebar_widget()
2161  *
2162  * @param string|int $name Widget ID.
2163  * @param callback $output_callback Run when widget is called.
2164  * @param string $classname Classname widget option.
2165  * @param mixed $params,... Widget parameters.
2166  */
2167 function register_sidebar_widget($name, $output_callback, $classname = '') {
2168         _deprecated_function( __FUNCTION__, '2.8', 'wp_register_sidebar_widget()' );
2169         // Compat
2170         if ( is_array($name) ) {
2171                 if ( count($name) == 3 )
2172                         $name = sprintf($name[0], $name[2]);
2173                 else
2174                         $name = $name[0];
2175         }
2176
2177         $id = sanitize_title($name);
2178         $options = array();
2179         if ( !empty($classname) && is_string($classname) )
2180                 $options['classname'] = $classname;
2181         $params = array_slice(func_get_args(), 2);
2182         $args = array($id, $name, $output_callback, $options);
2183         if ( !empty($params) )
2184                 $args = array_merge($args, $params);
2185
2186         call_user_func_array('wp_register_sidebar_widget', $args);
2187 }
2188
2189 /**
2190  * Alias of {@link wp_unregister_sidebar_widget()}.
2191  *
2192  * @since 2.2.0
2193  * @deprecated 2.8.0
2194  * @deprecated Use wp_unregister_sidebar_widget()
2195  * @see wp_unregister_sidebar_widget()
2196  *
2197  * @param int|string $id Widget ID.
2198  */
2199 function unregister_sidebar_widget($id) {
2200         _deprecated_function( __FUNCTION__, '2.8', 'wp_unregister_sidebar_widget()' );
2201         return wp_unregister_sidebar_widget($id);
2202 }
2203
2204 /**
2205  * Registers widget control callback for customizing options.
2206  *
2207  * Allows $name to be an array that accepts either three elements to grab the
2208  * first element and the third for the name or just uses the first element of
2209  * the array for the name.
2210  *
2211  * Passes to {@link wp_register_widget_control()} after the argument list has
2212  * been compiled.
2213  *
2214  * @since 2.2.0
2215  * @deprecated 2.8.0
2216  * @deprecated Use wp_register_widget_control()
2217  * @see wp_register_widget_control()
2218  *
2219  * @param int|string $name Sidebar ID.
2220  * @param callback $control_callback Widget control callback to display and process form.
2221  * @param int $width Widget width.
2222  * @param int $height Widget height.
2223  */
2224 function register_widget_control($name, $control_callback, $width = '', $height = '') {
2225         _deprecated_function( __FUNCTION__, '2.8', 'wp_register_widget_control()' );
2226         // Compat
2227         if ( is_array($name) ) {
2228                 if ( count($name) == 3 )
2229                         $name = sprintf($name[0], $name[2]);
2230                 else
2231                         $name = $name[0];
2232         }
2233
2234         $id = sanitize_title($name);
2235         $options = array();
2236         if ( !empty($width) )
2237                 $options['width'] = $width;
2238         if ( !empty($height) )
2239                 $options['height'] = $height;
2240         $params = array_slice(func_get_args(), 4);
2241         $args = array($id, $name, $control_callback, $options);
2242         if ( !empty($params) )
2243                 $args = array_merge($args, $params);
2244
2245         call_user_func_array('wp_register_widget_control', $args);
2246 }
2247
2248 /**
2249  * Alias of {@link wp_unregister_widget_control()}.
2250  *
2251  * @since 2.2.0
2252  * @deprecated 2.8.0
2253  * @deprecated Use wp_unregister_widget_control()
2254  * @see wp_unregister_widget_control()
2255  *
2256  * @param int|string $id Widget ID.
2257  */
2258 function unregister_widget_control($id) {
2259         _deprecated_function( __FUNCTION__, '2.8', 'wp_unregister_widget_control()' );
2260         return wp_unregister_widget_control($id);
2261 }
2262
2263 /**
2264  * Remove user meta data.
2265  *
2266  * @since 2.0.0
2267  * @deprecated 3.0.0
2268  * @deprecated Use delete_user_meta()
2269  * @see delete_user_meta()
2270  *
2271  * @param int $user_id User ID.
2272  * @param string $meta_key Metadata key.
2273  * @param mixed $meta_value Metadata value.
2274  * @return bool True deletion completed and false if user_id is not a number.
2275  */
2276 function delete_usermeta( $user_id, $meta_key, $meta_value = '' ) {
2277         _deprecated_function( __FUNCTION__, '3.0', 'delete_user_meta()' );
2278         global $wpdb;
2279         if ( !is_numeric( $user_id ) )
2280                 return false;
2281         $meta_key = preg_replace('|[^a-z0-9_]|i', '', $meta_key);
2282
2283         if ( is_array($meta_value) || is_object($meta_value) )
2284                 $meta_value = serialize($meta_value);
2285         $meta_value = trim( $meta_value );
2286
2287         $cur = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->usermeta WHERE user_id = %d AND meta_key = %s", $user_id, $meta_key) );
2288
2289         if ( $cur && $cur->umeta_id )
2290                 do_action( 'delete_usermeta', $cur->umeta_id, $user_id, $meta_key, $meta_value );
2291
2292         if ( ! empty($meta_value) )
2293                 $wpdb->query( $wpdb->prepare("DELETE FROM $wpdb->usermeta WHERE user_id = %d AND meta_key = %s AND meta_value = %s", $user_id, $meta_key, $meta_value) );
2294         else
2295                 $wpdb->query( $wpdb->prepare("DELETE FROM $wpdb->usermeta WHERE user_id = %d AND meta_key = %s", $user_id, $meta_key) );
2296
2297         clean_user_cache( $user_id );
2298         wp_cache_delete( $user_id, 'user_meta' );
2299
2300         if ( $cur && $cur->umeta_id )
2301                 do_action( 'deleted_usermeta', $cur->umeta_id, $user_id, $meta_key, $meta_value );
2302
2303         return true;
2304 }
2305
2306 /**
2307  * Retrieve user metadata.
2308  *
2309  * If $user_id is not a number, then the function will fail over with a 'false'
2310  * boolean return value. Other returned values depend on whether there is only
2311  * one item to be returned, which be that single item type. If there is more
2312  * than one metadata value, then it will be list of metadata values.
2313  *
2314  * @since 2.0.0
2315  * @deprecated 3.0.0
2316  * @deprecated Use get_user_meta()
2317  * @see get_user_meta()
2318  *
2319  * @param int $user_id User ID
2320  * @param string $meta_key Optional. Metadata key.
2321  * @return mixed
2322  */
2323 function get_usermeta( $user_id, $meta_key = '' ) {
2324         _deprecated_function( __FUNCTION__, '3.0', 'get_user_meta()' );
2325         global $wpdb;
2326         $user_id = (int) $user_id;
2327
2328         if ( !$user_id )
2329                 return false;
2330
2331         if ( !empty($meta_key) ) {
2332                 $meta_key = preg_replace('|[^a-z0-9_]|i', '', $meta_key);
2333                 $user = wp_cache_get($user_id, 'users');
2334                 // Check the cached user object
2335                 if ( false !== $user && isset($user->$meta_key) )
2336                         $metas = array($user->$meta_key);
2337                 else
2338                         $metas = $wpdb->get_col( $wpdb->prepare("SELECT meta_value FROM $wpdb->usermeta WHERE user_id = %d AND meta_key = %s", $user_id, $meta_key) );
2339         } else {
2340                 $metas = $wpdb->get_col( $wpdb->prepare("SELECT meta_value FROM $wpdb->usermeta WHERE user_id = %d", $user_id) );
2341         }
2342
2343         if ( empty($metas) ) {
2344                 if ( empty($meta_key) )
2345                         return array();
2346                 else
2347                         return '';
2348         }
2349
2350         $metas = array_map('maybe_unserialize', $metas);
2351
2352         if ( count($metas) == 1 )
2353                 return $metas[0];
2354         else
2355                 return $metas;
2356 }
2357
2358 /**
2359  * Update metadata of user.
2360  *
2361  * There is no need to serialize values, they will be serialized if it is
2362  * needed. The metadata key can only be a string with underscores. All else will
2363  * be removed.
2364  *
2365  * Will remove the metadata, if the meta value is empty.
2366  *
2367  * @since 2.0.0
2368  * @deprecated 3.0.0
2369  * @deprecated Use update_user_meta()
2370  * @see update_user_meta()
2371  *
2372  * @param int $user_id User ID
2373  * @param string $meta_key Metadata key.
2374  * @param mixed $meta_value Metadata value.
2375  * @return bool True on successful update, false on failure.
2376  */
2377 function update_usermeta( $user_id, $meta_key, $meta_value ) {
2378         _deprecated_function( __FUNCTION__, '3.0', 'update_user_meta()' );
2379         global $wpdb;
2380         if ( !is_numeric( $user_id ) )
2381                 return false;
2382         $meta_key = preg_replace('|[^a-z0-9_]|i', '', $meta_key);
2383
2384         /** @todo Might need fix because usermeta data is assumed to be already escaped */
2385         if ( is_string($meta_value) )
2386                 $meta_value = stripslashes($meta_value);
2387         $meta_value = maybe_serialize($meta_value);
2388
2389         if (empty($meta_value)) {
2390                 return delete_usermeta($user_id, $meta_key);
2391         }
2392
2393         $cur = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->usermeta WHERE user_id = %d AND meta_key = %s", $user_id, $meta_key) );
2394
2395         if ( $cur )
2396                 do_action( 'update_usermeta', $cur->umeta_id, $user_id, $meta_key, $meta_value );
2397
2398         if ( !$cur )
2399                 $wpdb->insert($wpdb->usermeta, compact('user_id', 'meta_key', 'meta_value') );
2400         else if ( $cur->meta_value != $meta_value )
2401                 $wpdb->update($wpdb->usermeta, compact('meta_value'), compact('user_id', 'meta_key') );
2402         else
2403                 return false;
2404
2405         clean_user_cache( $user_id );
2406         wp_cache_delete( $user_id, 'user_meta' );
2407
2408         if ( !$cur )
2409                 do_action( 'added_usermeta', $wpdb->insert_id, $user_id, $meta_key, $meta_value );
2410         else
2411                 do_action( 'updated_usermeta', $cur->umeta_id, $user_id, $meta_key, $meta_value );
2412
2413         return true;
2414 }
2415
2416 /**
2417  * Get users for the blog.
2418  *
2419  * For setups that use the multi-blog feature. Can be used outside of the
2420  * multi-blog feature.
2421  *
2422  * @since 2.2.0
2423  * @deprecated 3.1.0
2424  * @uses $wpdb WordPress database object for queries
2425  * @uses $blog_id The Blog id of the blog for those that use more than one blog
2426  *
2427  * @param int $id Blog ID.
2428  * @return array List of users that are part of that Blog ID
2429  */
2430 function get_users_of_blog( $id = '' ) {
2431         _deprecated_function( __FUNCTION__, '3.1', 'get_users()' );
2432
2433         global $wpdb, $blog_id;
2434         if ( empty($id) )
2435                 $id = (int) $blog_id;
2436         $blog_prefix = $wpdb->get_blog_prefix($id);
2437         $users = $wpdb->get_results( "SELECT user_id, user_id AS ID, user_login, display_name, user_email, meta_value FROM $wpdb->users, $wpdb->usermeta WHERE {$wpdb->users}.ID = {$wpdb->usermeta}.user_id AND meta_key = '{$blog_prefix}capabilities' ORDER BY {$wpdb->usermeta}.user_id" );
2438         return $users;
2439 }
2440
2441 /**
2442  * Enable/disable automatic general feed link outputting.
2443  *
2444  * @since 2.8.0
2445  * @deprecated 3.0.0
2446  * @deprecated Use add_theme_support( 'automatic-feed-links' )
2447  *
2448  * @param boolean $add Optional, default is true. Add or remove links. Defaults to true.
2449  */
2450 function automatic_feed_links( $add = true ) {
2451         _deprecated_function( __FUNCTION__, '3.0', "add_theme_support( 'automatic-feed-links' )" );
2452
2453         if ( $add )
2454                 add_theme_support( 'automatic-feed-links' );
2455         else
2456                 remove_action( 'wp_head', 'feed_links_extra', 3 ); // Just do this yourself in 3.0+
2457 }
2458
2459 /**
2460  * Retrieve user data based on field.
2461  *
2462  * @since 1.5.0
2463  * @deprecated 3.0.0
2464  * @deprecated Use get_the_author_meta()
2465  * @see get_the_author_meta()
2466  */
2467 function get_profile( $field, $user = false ) {
2468         _deprecated_function( __FUNCTION__, '3.0', 'get_the_author_meta()' );
2469         if ( $user ) {
2470                 $user = get_user_by( 'login', $user );
2471                 $user = $user->ID;
2472         }
2473         return get_the_author_meta( $field, $user );
2474 }
2475
2476 /**
2477  * Number of posts user has written.
2478  *
2479  * @since 0.71
2480  * @deprecated 3.0.0
2481  * @deprecated Use count_user_posts()
2482  * @see count_user_posts()
2483  */
2484 function get_usernumposts( $userid ) {
2485         _deprecated_function( __FUNCTION__, '3.0', 'count_user_posts()' );
2486         return count_user_posts( $userid );
2487 }
2488
2489 /**
2490  * Callback used to change %uXXXX to &#YYY; syntax
2491  *
2492  * @since 2.8.0
2493  * @access private
2494  * @deprecated 3.0.0
2495  *
2496  * @param array $matches Single Match
2497  * @return string An HTML entity
2498  */
2499 function funky_javascript_callback($matches) {
2500         return "&#".base_convert($matches[1],16,10).";";
2501 }
2502
2503 /**
2504  * Fixes javascript bugs in browsers.
2505  *
2506  * Converts unicode characters to HTML numbered entities.
2507  *
2508  * @since 1.5.0
2509  * @uses $is_macIE
2510  * @uses $is_winIE
2511  * @deprecated 3.0.0
2512  *
2513  * @param string $text Text to be made safe.
2514  * @return string Fixed text.
2515  */
2516 function funky_javascript_fix($text) {
2517         _deprecated_function( __FUNCTION__, '3.0' );
2518         // Fixes for browsers' javascript bugs
2519         global $is_macIE, $is_winIE;
2520
2521         if ( $is_winIE || $is_macIE )
2522                 $text =  preg_replace_callback("/\%u([0-9A-F]{4,4})/",
2523                                         "funky_javascript_callback",
2524                                         $text);
2525
2526         return $text;
2527 }
2528
2529 /**
2530  * Checks that the taxonomy name exists.
2531  *
2532  * @since 2.3.0
2533  * @deprecated 3.0.0
2534  * @deprecated Use taxonomy_exists()
2535  * @see taxonomy_exists()
2536  *
2537  * @param string $taxonomy Name of taxonomy object
2538  * @return bool Whether the taxonomy exists.
2539  */
2540 function is_taxonomy( $taxonomy ) {
2541         _deprecated_function( __FUNCTION__, '3.0', 'taxonomy_exists()' );
2542         return taxonomy_exists( $taxonomy );
2543 }
2544
2545 /**
2546  * Check if Term exists.
2547  *
2548  * @since 2.3.0
2549  * @deprecated 3.0.0
2550  * @deprecated Use term_exists()
2551  * @see term_exists()
2552  *
2553  * @param int|string $term The term to check
2554  * @param string $taxonomy The taxonomy name to use
2555  * @param int $parent ID of parent term under which to confine the exists search.
2556  * @return mixed Get the term id or Term Object, if exists.
2557  */
2558 function is_term( $term, $taxonomy = '', $parent = 0 ) {
2559         _deprecated_function( __FUNCTION__, '3.0', 'term_exists()' );
2560         return term_exists( $term, $taxonomy, $parent );
2561 }
2562
2563 /**
2564  * Is the current admin page generated by a plugin?
2565  *
2566  * @since 1.5.0
2567  * @deprecated 3.1.0
2568  * @deprecated Use global $plugin_page and/or get_plugin_page_hookname() hooks.
2569  *
2570  * @global $plugin_page
2571  *
2572  * @return bool
2573  */
2574 function is_plugin_page() {
2575         _deprecated_function( __FUNCTION__, '3.1'  );
2576
2577         global $plugin_page;
2578
2579         if ( isset($plugin_page) )
2580                 return true;
2581
2582         return false;
2583 }
2584
2585 /**
2586  * Update the categories cache.
2587  *
2588  * This function does not appear to be used anymore or does not appear to be
2589  * needed. It might be a legacy function left over from when there was a need
2590  * for updating the category cache.
2591  *
2592  * @since 1.5.0
2593  * @deprecated 3.1.0
2594  *
2595  * @return bool Always return True
2596  */
2597 function update_category_cache() {
2598         _deprecated_function( __FUNCTION__, '3.1'  );
2599
2600         return true;
2601 }
2602
2603 /**
2604  * Check for PHP timezone support
2605  *
2606  * @since 2.9.0
2607  * @deprecated 3.2.0
2608  *
2609  * @return bool
2610  */
2611 function wp_timezone_supported() {
2612         _deprecated_function( __FUNCTION__, '3.2' );
2613
2614         return true;
2615 }
2616
2617 /**
2618  * Display editor: TinyMCE, HTML, or both.
2619  *
2620  * @since 2.1.0
2621  * @deprecated 3.3.0
2622  * @deprecated Use wp_editor()
2623  * @see wp_editor()
2624  *
2625  * @param string $content Textarea content.
2626  * @param string $id Optional, default is 'content'. HTML ID attribute value.
2627  * @param string $prev_id Optional, not used
2628  * @param bool $media_buttons Optional, default is true. Whether to display media buttons.
2629  * @param int $tab_index Optional, not used
2630  */
2631 function the_editor($content, $id = 'content', $prev_id = 'title', $media_buttons = true, $tab_index = 2, $extended = true) {
2632         _deprecated_function( __FUNCTION__, '3.3', 'wp_editor()' );
2633
2634         wp_editor( $content, $id, array( 'media_buttons' => $media_buttons ) );
2635         return;
2636 }
2637
2638 /**
2639  * Perform the query to get the $metavalues array(s) needed by _fill_user and _fill_many_users
2640  *
2641  * @since 3.0.0
2642  * @deprecated 3.3.0
2643  *
2644  * @param array $ids User ID numbers list.
2645  * @return array of arrays. The array is indexed by user_id, containing $metavalues object arrays.
2646  */
2647 function get_user_metavalues($ids) {
2648         _deprecated_function( __FUNCTION__, '3.3' );
2649
2650         $objects = array();
2651
2652         $ids = array_map('intval', $ids);
2653         foreach ( $ids as $id )
2654                 $objects[$id] = array();
2655
2656         $metas = update_meta_cache('user', $ids);
2657
2658         foreach ( $metas as $id => $meta ) {
2659                 foreach ( $meta as $key => $metavalues ) {
2660                         foreach ( $metavalues as $value ) {
2661                                 $objects[$id][] = (object)array( 'user_id' => $id, 'meta_key' => $key, 'meta_value' => $value);
2662                         }
2663                 }
2664         }
2665
2666         return $objects;
2667 }
2668
2669 /**
2670  * Sanitize every user field.
2671  *
2672  * If the context is 'raw', then the user object or array will get minimal santization of the int fields.
2673  *
2674  * @since 2.3.0
2675  * @deprecated 3.3.0
2676  *
2677  * @param object|array $user The User Object or Array
2678  * @param string $context Optional, default is 'display'. How to sanitize user fields.
2679  * @return object|array The now sanitized User Object or Array (will be the same type as $user)
2680  */
2681 function sanitize_user_object($user, $context = 'display') {
2682         _deprecated_function( __FUNCTION__, '3.3' );
2683
2684         if ( is_object($user) ) {
2685                 if ( !isset($user->ID) )
2686                         $user->ID = 0;
2687                 if ( !is_a( $user, 'WP_User' ) ) {
2688                         $vars = get_object_vars($user);
2689                         foreach ( array_keys($vars) as $field ) {
2690                                 if ( is_string($user->$field) || is_numeric($user->$field) )
2691                                         $user->$field = sanitize_user_field($field, $user->$field, $user->ID, $context);
2692                         }
2693                 }
2694                 $user->filter = $context;
2695         } else {
2696                 if ( !isset($user['ID']) )
2697                         $user['ID'] = 0;
2698                 foreach ( array_keys($user) as $field )
2699                         $user[$field] = sanitize_user_field($field, $user[$field], $user['ID'], $context);
2700                 $user['filter'] = $context;
2701         }
2702
2703         return $user;
2704 }
2705
2706 /**
2707  * Get boundary post relational link.
2708  *
2709  * Can either be start or end post relational link.
2710  *
2711  * @since 2.8.0
2712  * @deprecated 3.3.0
2713  *
2714  * @param string $title Optional. Link title format.
2715  * @param bool $in_same_cat Optional. Whether link should be in a same category.
2716  * @param string $excluded_categories Optional. Excluded categories IDs.
2717  * @param bool $start Optional, default is true. Whether to display link to first or last post.
2718  * @return string
2719  */
2720 function get_boundary_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '', $start = true) {
2721         _deprecated_function( __FUNCTION__, '3.3' );
2722
2723         $posts = get_boundary_post($in_same_cat, $excluded_categories, $start);
2724         // If there is no post stop.
2725         if ( empty($posts) )
2726                 return;
2727
2728         // Even though we limited get_posts to return only 1 item it still returns an array of objects.
2729         $post = $posts[0];
2730
2731         if ( empty($post->post_title) )
2732                 $post->post_title = $start ? __('First Post') : __('Last Post');
2733
2734         $date = mysql2date(get_option('date_format'), $post->post_date);
2735
2736         $title = str_replace('%title', $post->post_title, $title);
2737         $title = str_replace('%date', $date, $title);
2738         $title = apply_filters('the_title', $title, $post->ID);
2739
2740         $link = $start ? "<link rel='start' title='" : "<link rel='end' title='";
2741         $link .= esc_attr($title);
2742         $link .= "' href='" . get_permalink($post) . "' />\n";
2743
2744         $boundary = $start ? 'start' : 'end';
2745         return apply_filters( "{$boundary}_post_rel_link", $link );
2746 }
2747
2748 /**
2749  * Display relational link for the first post.
2750  *
2751  * @since 2.8.0
2752  * @deprecated 3.3.0
2753  *
2754  * @param string $title Optional. Link title format.
2755  * @param bool $in_same_cat Optional. Whether link should be in a same category.
2756  * @param string $excluded_categories Optional. Excluded categories IDs.
2757  */
2758 function start_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '') {
2759         _deprecated_function( __FUNCTION__, '3.3' );
2760
2761         echo get_boundary_post_rel_link($title, $in_same_cat, $excluded_categories, true);
2762 }
2763
2764 /**
2765  * Get site index relational link.
2766  *
2767  * @since 2.8.0
2768  * @deprecated 3.3.0
2769  *
2770  * @return string
2771  */
2772 function get_index_rel_link() {
2773         _deprecated_function( __FUNCTION__, '3.3' );
2774
2775         $link = "<link rel='index' title='" . esc_attr( get_bloginfo( 'name', 'display' ) ) . "' href='" . esc_url( user_trailingslashit( get_bloginfo( 'url', 'display' ) ) ) . "' />\n";
2776         return apply_filters( "index_rel_link", $link );
2777 }
2778
2779 /**
2780  * Display relational link for the site index.
2781  *
2782  * @since 2.8.0
2783  * @deprecated 3.3.0
2784  */
2785 function index_rel_link() {
2786         _deprecated_function( __FUNCTION__, '3.3' );
2787
2788         echo get_index_rel_link();
2789 }
2790
2791 /**
2792  * Get parent post relational link.
2793  *
2794  * @since 2.8.0
2795  * @deprecated 3.3.0
2796  *
2797  * @param string $title Optional. Link title format.
2798  * @return string
2799  */
2800 function get_parent_post_rel_link($title = '%title') {
2801         _deprecated_function( __FUNCTION__, '3.3' );
2802
2803         if ( ! empty( $GLOBALS['post'] ) && ! empty( $GLOBALS['post']->post_parent ) )
2804                 $post = & get_post($GLOBALS['post']->post_parent);
2805
2806         if ( empty($post) )
2807                 return;
2808
2809         $date = mysql2date(get_option('date_format'), $post->post_date);
2810
2811         $title = str_replace('%title', $post->post_title, $title);
2812         $title = str_replace('%date', $date, $title);
2813         $title = apply_filters('the_title', $title, $post->ID);
2814
2815         $link = "<link rel='up' title='";
2816         $link .= esc_attr( $title );
2817         $link .= "' href='" . get_permalink($post) . "' />\n";
2818
2819         return apply_filters( "parent_post_rel_link", $link );
2820 }
2821
2822 /**
2823  * Display relational link for parent item
2824  *
2825  * @since 2.8.0
2826  * @deprecated 3.3.0
2827  */
2828 function parent_post_rel_link($title = '%title') {
2829         _deprecated_function( __FUNCTION__, '3.3' );
2830
2831         echo get_parent_post_rel_link($title);
2832 }
2833
2834 /**
2835  * Add the "Dashboard"/"Visit Site" menu.
2836  *
2837  * @since 3.2.0
2838  * @deprecated 3.3.0
2839  */
2840 function wp_admin_bar_dashboard_view_site_menu( $wp_admin_bar ) {
2841         _deprecated_function( __FUNCTION__, '3.3' );
2842
2843         $user_id = get_current_user_id();
2844
2845         if ( 0 != $user_id ) {
2846                 if ( is_admin() )
2847                         $wp_admin_bar->add_menu( array( 'id' => 'view-site', 'title' => __( 'Visit Site' ), 'href' => home_url() ) );
2848                 elseif ( is_multisite() )
2849                         $wp_admin_bar->add_menu( array( 'id' => 'dashboard', 'title' => __( 'Dashboard' ), 'href' => get_dashboard_url( $user_id ) ) );
2850                 else
2851                         $wp_admin_bar->add_menu( array( 'id' => 'dashboard', 'title' => __( 'Dashboard' ), 'href' => admin_url() ) );
2852         }
2853 }
2854
2855 /**
2856  * Checks if the current user belong to a given blog.
2857  *
2858  * @since MU
2859  * @deprecated 3.3.0
2860  * @deprecated Use is_user_member_of_blog()
2861  * @see is_user_member_of_blog()
2862  *
2863  * @param int $blog_id Blog ID
2864  * @return bool True if the current users belong to $blog_id, false if not.
2865  */
2866 function is_blog_user( $blog_id = 0 ) {
2867         _deprecated_function( __FUNCTION__, '3.3', 'is_user_member_of_blog()' );
2868
2869         return is_user_member_of_blog( get_current_user_id(), $blog_id );
2870 }
2871
2872 /**
2873  * Open the file handle for debugging.
2874  *
2875  * @since 0.71
2876  * @deprecated Use error_log()
2877  * @link http://www.php.net/manual/en/function.error-log.php
2878  * @deprecated 3.4.0
2879  */
2880 function debug_fopen( $filename, $mode ) {
2881         _deprecated_function( __FUNCTION__, 'error_log()' );
2882         return false;
2883 }
2884
2885 /**
2886  * Write contents to the file used for debugging.
2887  *
2888  * @since 0.71
2889  * @deprecated Use error_log() instead.
2890  * @link http://www.php.net/manual/en/function.error-log.php
2891  * @deprecated 3.4.0
2892  */
2893 function debug_fwrite( $fp, $string ) {
2894         _deprecated_function( __FUNCTION__, 'error_log()' );
2895         if ( ! empty( $GLOBALS['debug'] ) )
2896                 error_log( $string );
2897 }
2898
2899 /**
2900  * Close the debugging file handle.
2901  *
2902  * @since 0.71
2903  * @deprecated Use error_log()
2904  * @link http://www.php.net/manual/en/function.error-log.php
2905  * @deprecated 3.4.0
2906  */
2907 function debug_fclose( $fp ) {
2908         _deprecated_function( __FUNCTION__, 'error_log()' );
2909 }
2910
2911 /**
2912  * Retrieve list of themes with theme data in theme directory.
2913  *
2914  * The theme is broken, if it doesn't have a parent theme and is missing either
2915  * style.css and, or index.php. If the theme has a parent theme then it is
2916  * broken, if it is missing style.css; index.php is optional.
2917  *
2918  * @since 1.5.0
2919  * @deprecated 3.4.0
2920  * @deprecated Use wp_get_themes()
2921  * @see wp_get_themes()
2922  *
2923  * @return array Theme list with theme data.
2924  */
2925 function get_themes() {
2926         _deprecated_function( __FUNCTION__, '3.4', 'wp_get_themes()' );
2927
2928         global $wp_themes;
2929         if ( isset( $wp_themes ) )
2930                 return $wp_themes;
2931
2932         $themes = wp_get_themes();
2933         $wp_themes = array();
2934
2935         foreach ( $themes as $theme ) {
2936                 $name = $theme->get('Name');
2937                 if ( isset( $wp_themes[ $name ] ) )
2938                         $wp_themes[ $name . '/' . $theme->get_stylesheet() ] = $theme;
2939                 else
2940                         $wp_themes[ $name ] = $theme;
2941         }
2942
2943         return $wp_themes;
2944 }
2945
2946 /**
2947  * Retrieve theme data.
2948  *
2949  * @since 1.5.0
2950  * @deprecated 3.4.0
2951  * @deprecated Use wp_get_theme()
2952  * @see wp_get_theme()
2953  *
2954  * @param string $theme Theme name.
2955  * @return array|null Null, if theme name does not exist. Theme data, if exists.
2956  */
2957 function get_theme( $theme ) {
2958         _deprecated_function( __FUNCTION__, '3.4', 'wp_get_theme( $stylesheet )' );
2959
2960         $themes = get_themes();
2961         if ( is_array( $themes ) && array_key_exists( $theme, $themes ) )
2962                 return $themes[ $theme ];
2963         return null;
2964 }
2965
2966 /**
2967  * Retrieve current theme name.
2968  *
2969  * @since 1.5.0
2970  * @deprecated 3.4.0
2971  * @deprecated Use (string) wp_get_theme()
2972  * @see wp_get_theme()
2973  *
2974  * @return string
2975  */
2976 function get_current_theme() {
2977         _deprecated_function( __FUNCTION__, '3.4', 'wp_get_theme()' );
2978
2979         if ( $theme = get_option( 'current_theme' ) )
2980                 return $theme;
2981
2982         return wp_get_theme()->get('Name');
2983 }
2984
2985 /**
2986  * Accepts matches array from preg_replace_callback in wpautop() or a string.
2987  *
2988  * Ensures that the contents of a <<pre>>...<</pre>> HTML block are not
2989  * converted into paragraphs or line-breaks.
2990  *
2991  * @since 1.2.0
2992  * @deprecated 3.4.0
2993  *
2994  * @param array|string $matches The array or string
2995  * @return string The pre block without paragraph/line-break conversion.
2996  */
2997 function clean_pre($matches) {
2998         _deprecated_function( __FUNCTION__, '3.4' );
2999
3000         if ( is_array($matches) )
3001                 $text = $matches[1] . $matches[2] . "</pre>";
3002         else
3003                 $text = $matches;
3004
3005         $text = str_replace(array('<br />', '<br/>', '<br>'), array('', '', ''), $text);
3006         $text = str_replace('<p>', "\n", $text);
3007         $text = str_replace('</p>', '', $text);
3008
3009         return $text;
3010 }
3011
3012
3013 /**
3014  * Add callbacks for image header display.
3015  *
3016  * @since 2.1.0
3017  * @deprecated 3.4.0
3018  * @deprecated Use add_theme_support('custom-header', $args)
3019  * @see add_theme_support()
3020  *
3021  * @param callback $wp_head_callback Call on 'wp_head' action.
3022  * @param callback $admin_head_callback Call on custom header administration screen.
3023  * @param callback $admin_preview_callback Output a custom header image div on the custom header administration screen. Optional.
3024  */
3025 function add_custom_image_header( $wp_head_callback, $admin_head_callback, $admin_preview_callback = '' ) {
3026         _deprecated_function( __FUNCTION__, '3.4', 'add_theme_support( \'custom-header\', $args )' );
3027         $args = array(
3028                 'wp-head-callback'    => $wp_head_callback,
3029                 'admin-head-callback' => $admin_head_callback,
3030         );
3031         if ( $admin_preview_callback )
3032                 $args['admin-preview-callback'] = $admin_preview_callback;
3033         return add_theme_support( 'custom-header', $args );
3034 }
3035
3036 /**
3037  * Remove image header support.
3038  *
3039  * @since 3.1.0
3040  * @deprecated 3.4.0
3041  * @deprecated Use remove_theme_support('custom-header')
3042  * @see remove_theme_support()
3043  *
3044  * @return bool Whether support was removed.
3045  */
3046 function remove_custom_image_header() {
3047         _deprecated_function( __FUNCTION__, '3.4', 'remove_theme_support( \'custom-header\' )' );
3048         return remove_theme_support( 'custom-header' );
3049 }
3050
3051 /**
3052  * Add callbacks for background image display.
3053  *
3054  * @since 3.0.0
3055  * @deprecated 3.4.0
3056  * @deprecated Use add_theme_support('custom-background, $args)
3057  * @see add_theme_support()
3058  *
3059  * @param callback $wp_head_callback Call on 'wp_head' action.
3060  * @param callback $admin_head_callback Call on custom background administration screen.
3061  * @param callback $admin_preview_callback Output a custom background image div on the custom background administration screen. Optional.
3062  */
3063 function add_custom_background( $wp_head_callback = '', $admin_head_callback = '', $admin_preview_callback = '' ) {
3064         _deprecated_function( __FUNCTION__, '3.4', 'add_theme_support( \'custom-background\', $args )' );
3065         $args = array();
3066         if ( $wp_head_callback )
3067                 $args['wp-head-callback'] = $wp_head_callback;
3068         if ( $admin_head_callback )
3069                 $args['admin-head-callback'] = $admin_head_callback;
3070         if ( $admin_preview_callback )
3071                 $args['admin-preview-callback'] = $admin_preview_callback;
3072         return add_theme_support( 'custom-background', $args );
3073 }
3074
3075 /**
3076  * Remove custom background support.
3077  *
3078  * @since 3.1.0
3079  * @see add_custom_background()
3080  *
3081  * @return bool Whether support was removed.
3082  */
3083 function remove_custom_background() {
3084         _deprecated_function( __FUNCTION__, '3.4', 'remove_theme_support( \'custom-background\' )' );
3085         return remove_theme_support( 'custom-background' );
3086 }
3087
3088 /**
3089  * Retrieve theme data from parsed theme file.
3090  *
3091  * @since 1.5.0
3092  * @deprecated 3.4.0
3093  * @deprecated Use wp_get_theme()
3094  * @see wp_get_theme()
3095  *
3096  * @param string $theme_file Theme file path.
3097  * @return array Theme data.
3098  */
3099 function get_theme_data( $theme_file ) {
3100         _deprecated_function( __FUNCTION__, 3.4, 'wp_get_theme()' );
3101         $theme = new WP_Theme( basename( dirname( $theme_file ) ), dirname( dirname( $theme_file ) ) );
3102
3103         $theme_data = array(
3104                 'Name' => $theme->get('Name'),
3105                 'URI' => $theme->display('ThemeURI', true, false),
3106                 'Description' => $theme->display('Description', true, false),
3107                 'Author' => $theme->display('Author', true, false),
3108                 'AuthorURI' => $theme->display('AuthorURI', true, false),
3109                 'Version' => $theme->get('Version'),
3110                 'Template' => $theme->get('Template'),
3111                 'Status' => $theme->get('Status'),
3112                 'Tags' => $theme->get('Tags'),
3113                 'Title' => $theme->get('Name'),
3114                 'AuthorName' => $theme->get('Author'),
3115         );
3116
3117         foreach ( apply_filters( 'extra_theme_headers', array() ) as $extra_header ) {
3118                 if ( ! isset( $theme_data[ $extra_header ] ) )
3119                         $theme_data[ $extra_header ] = $theme->get( $extra_header );
3120         }
3121
3122         return $theme_data;
3123 }
3124
3125 /**
3126  * Alias of update_post_cache().
3127  *
3128  * @see update_post_cache() Posts and pages are the same, alias is intentional
3129  *
3130  * @since 1.5.1
3131  * @deprecated 3.4.0
3132  *
3133  * @param array $pages list of page objects
3134  */
3135 function update_page_cache( &$pages ) {
3136         _deprecated_function( __FUNCTION__, 3.4, 'update_post_cache()' );
3137
3138         update_post_cache( $pages );
3139 }
3140
3141 /**
3142  * Will clean the page in the cache.
3143  *
3144  * Clean (read: delete) page from cache that matches $id. Will also clean cache
3145  * associated with 'all_page_ids' and 'get_pages'.
3146  *
3147  * @since 2.0.0
3148  * @deprecated 3.4.0
3149  *
3150  * @uses do_action() Will call the 'clean_page_cache' hook action.
3151  *
3152  * @param int $id Page ID to clean
3153  */
3154 function clean_page_cache( $id ) {
3155         _deprecated_function( __FUNCTION__, 3.4, 'clean_post_cache()' );
3156
3157         clean_post_cache( $id );
3158 }