Folders

List of the subfolders in the WordPress main (root) folder.

By the Web Warlock, Sunday, 22/Aug/2010 13:29

get_theme_mod

By the Web Warlock, Thursday, 8/Jul/2010 0:15

<?php get_theme_mod( $name, $default ) ?>

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(); ?>