Description of the WordPress core version control

By the Web Warlock, Friday, 18/Jun/2010 11:34

of the WordPress® .

Here we keep track of the different releases and versions of WordPress.

edit_term_meta

By the Web Warlock, Wednesday, 9/Jun/2010 6:15

<?php do_action( 'edit_term_meta' , $term_id , $taxonomy );?>

Features by object

By the Web Warlock, Saturday, 26/Jun/2010 10:56

of the index of .

Index of the different features, classified by the WordPress object or element they relate to.

Index of capabilities

By the Web Warlock, Saturday, 26/Jun/2010 15:47

Index of user capabilities (properties that mark what an user can or cannot do).

Link term to Page

By the Web Warlock, Thursday, 10/Jun/2010 1:53

You can link any term to a Page. This means that the link to the term will point to the URL of the Page, allowing you total freedom with the prettiest Permalinks ever. The Page "knows" the term it links to via a custom field, normally _query_cat.

Post capabilities

By the Web Warlock, Saturday, 26/Jun/2010 10:27

Different post types may have different sets of post capabilities assigned to them.

Post features

By the Web Warlock, Saturday, 26/Jun/2010 11:09

Index of the features available for posts, and the elements that posts have.

Post features (core)

By the Web Warlock, Saturday, 26/Jun/2010 10:39

Index of the core features for the WordPress® posts.

register_post_type

By the Web Warlock, Thursday, 24/Jun/2010 10:06

<?php register_post_type( $post_type, $args = array(
		'labels' => array(), 'description' => '', 'publicly_queryable' => null, 'exclude_from_search' => null,
		'_builtin' => false, '_edit_link' => 'post.php?post=%d', 'capability_type' => 'post', 'capabilities' => array(), 'hierarchical' => false,
		'public' => false, 'rewrite' => true, 'query_var' => true, 'supports' => array(), 'register_meta_box_cb' => null,
		'taxonomies' => array(), 'show_ui' => null, 'menu_position' => null, 'menu_icon' => null,
		'permalink_epmask' => EP_PERMALINK, 'can_export' => true, 'show_in_nav_menus' => null ) ); ?>

register_post_type: Source code

By the Web Warlock, Wednesday, 23/Jun/2010 20:09

Source code of the WordPress function register_post_type.

show_term_meta_form

By the Web Warlock, Tuesday, 8/Jun/2010 6:14

located in the file / . Displays the admin form. Calls the action . Hooks to the action hook at priority 0.

<?php show_term_meta_form(); ?>

User capabilities

By the Web Warlock, Saturday, 26/Jun/2010 15:29

Capabilities indicate if a user (or role) can do a given task, access a given feature, etc.

ZYX Time Teller Terms

By the Web Warlock, Tuesday, 8/Jun/2010 23:15

The ZYX Time Teller Terms is a term-meta based plugin which manages time: date, hour, year, year period, decade, century, age, aeon, millennium...

{term_group}_checktable_before

By the Web Warlock, Wednesday, 9/Jun/2010 3:04

The action hook {term_group}_checktable_before is called just before the checktable of the term_group is displayed. It passes the vars $post , $term_group , $post_terms.