$wp_post_types is the global array that stores the post type objects.
$_wp_post_type_features
By the Web Warlock, Wednesday, 28/Jul/2010 1:16
The global variable $_wp_post_type_features stores the features enabled for the different post types as a boolean value of the index $_wp_post_type_features[post_type][feature].
Actions with post types
By the Web Warlock, Saturday, 24/Jul/2010 1:09
Actions you can do with post types (create, modify, list... ).
Adding excerpts to Pages
By the Web Warlock, Wednesday, 28/Jul/2010 3:47
To add excerpts to Pages, from 3.0 on you just need to add the support for the excerpt
feature for the page
post type with add_post_type_support called in the init
hook.
add_post_type support: Source code
By the Web Warlock, Wednesday, 28/Jul/2010 3:36
Source code of the function add_post_type_support, located in the file wp-includes/post.php
add_post_type_support
By the Web Warlock, Wednesday, 28/Jul/2010 4:43
<?php add_post_type_support( $post_type, $feature ) ?>
add_post_type_support: Parameters
By the Web Warlock, Wednesday, 28/Jul/2010 4:21
add_post_type_support takes two parameters: the post type (string) and the features to support (string or array).
add_post_type_support: Usage
By the Web Warlock, Wednesday, 28/Jul/2010 4:30
<?php add_post_type_support( $post_type, $feature ) ?>
Classes
By the Web Warlock, Saturday, 24/Jul/2010 16:30
WordPress, being OOP, uses several custom classes of its own.
excerpt post type feature
By the Web Warlock, Wednesday, 28/Jul/2010 3:51
The excerpt
post type feature indicates whether the excerpt meta box will be displayed in the edit post screen.
get_theme_mod
By the Web Warlock, Thursday, 8/Jul/2010 0:15
<?php get_theme_mod( $name, $default ) ?>
Index of the post type features
By the Web Warlock, Wednesday, 28/Jul/2010 2:02
Alphabetical index of the so-called post type features (boolean values that control parts of the Add New Post screen).
plugins_loaded
By the Web Warlock, Tuesday, 20/Jul/2010 15:47
The WordPress® plugins_loaded action hook triggers once all plugins are loaded; is the second action triggered.
Post type features
By the Web Warlock, Wednesday, 28/Jul/2010 1:32
The so-called post type features are flags (boolean values) that mark if a given part/meta box in the admin/edit section will be used or not.
Post type index
By the Web Warlock, Saturday, 24/Jul/2010 0:22
Index of the different post types of the WordPress post table.