install_global_terms [ WordPress Function ]
install_global_terms ( No parameters )
| Defined at: |
|
Benzer Fonksiyonlar: global_terms, install_popular_tags, install_blog_defaults, install_blog, global_terms_enabled
No description yet.
Source
<?php
function install_global_terms() {
global $wpdb, $charset_collate;
$ms_queries = "
CREATE TABLE $wpdb->sitecategories (
cat_ID bigint(20) NOT NULL auto_increment,
cat_name varchar(55) NOT NULL default '',
category_nicename varchar(200) NOT NULL default '',
last_updated timestamp NOT NULL,
PRIMARY KEY (cat_ID),
KEY category_nicename (category_nicename),
KEY last_updated (last_updated)
) $charset_collate;
";
// now create tables
dbDelta( $ms_queries );
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- install_global_terms | A HitchHackers guide through WordPress
Feb 12, 2011 ... function install_global_terms() { global $wpdb, $charset_collate; $ms_queries = " CREATE TABLE $wpdb->sitecategories ( cat_ID bigint(20) ...
hitchhackerguide.com - Docs for page upgrade.php
return: List of options. since: 1.2.0. array get_alloptions_110 (). install_global_terms (line 2004). Install global terms. since: 3.0.0. void install_global_terms () ...
phpdoc.wordpress.org - #12666 (ms-options.php cleanups, and enabling global terms ...
A plugin can call install_global_terms(), which we can continue to maintain. ... (In [14880]) Remove the on switch for global terms. install_global_terms() can be ...
core.trac.wordpress.org - PHPXRef 0.7 : WordPress : Detail view of upgrade.php
install_global_terms(). Functions. Functions that are not part of ...
phpxref.ftwr.co.uk