Changeset 13229 for trunk/wp-includes/deprecated.php
- Timestamp:
- 02/19/2010 07:57:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r13098 r13229 2 2 /** 3 3 * Deprecated functions from past WordPress versions. You shouldn't use these 4 * globals and functions and look for the alternatives instead. The functions5 * and globals will beremoved in a later version.4 * functions and look for the alternatives instead. The functions will be 5 * removed in a later version. 6 6 * 7 7 * @package WordPress 8 8 * @subpackage Deprecated 9 9 */ 10 11 /*12 * Deprecated global variables.13 */14 15 /**16 * The name of the Posts table17 * @global string $tableposts18 * @deprecated Use $wpdb->posts19 */20 $tableposts = $wpdb->posts;21 22 /**23 * The name of the Users table24 * @global string $tableusers25 * @deprecated Use $wpdb->users26 */27 $tableusers = $wpdb->users;28 29 /**30 * The name of the Categories table31 * @global string $tablecategories32 * @deprecated Use $wpdb->categories33 */34 $tablecategories = $wpdb->categories;35 36 /**37 * The name of the post to category table38 * @global string $tablepost2cat39 * @deprecated Use $wpdb->post2cat;40 */41 $tablepost2cat = $wpdb->post2cat;42 43 /**44 * The name of the comments table45 * @global string $tablecomments46 * @deprecated Use $wpdb->comments;47 */48 $tablecomments = $wpdb->comments;49 50 /**51 * The name of the links table52 * @global string $tablelinks53 * @deprecated Use $wpdb->links;54 */55 $tablelinks = $wpdb->links;56 57 /**58 * @global string $tablelinkcategories59 * @deprecated Not used anymore;60 */61 $tablelinkcategories = 'linkcategories_is_gone';62 63 /**64 * The name of the options table65 * @global string $tableoptions66 * @deprecated Use $wpdb->options;67 */68 $tableoptions = $wpdb->options;69 70 /**71 * The name of the postmeta table72 * @global string $tablepostmeta73 * @deprecated Use $wpdb->postmeta;74 */75 $tablepostmeta = $wpdb->postmeta;76 10 77 11 /*
Note: See TracChangeset
for help on using the changeset viewer.