2004-05-24 01:34:57 +00:00
|
|
|
<?php
|
2007-12-14 00:28:34 +00:00
|
|
|
/**
|
2008-06-14 16:31:08 +00:00
|
|
|
* Post functions and post utility function.
|
|
|
|
*
|
2007-12-14 00:28:34 +00:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Post
|
2008-08-19 16:38:06 +00:00
|
|
|
* @since 1.5.0
|
2007-12-14 00:28:34 +00:00
|
|
|
*/
|
2004-05-24 01:34:57 +00:00
|
|
|
|
2015-09-14 02:59:24 +00:00
|
|
|
/** Core posts functionality */
|
2015-08-26 12:40:21 +00:00
|
|
|
require_once( ABSPATH . WPINC . '/post-functions.php' );
|
2015-09-14 02:59:24 +00:00
|
|
|
|
|
|
|
/** Walker_Page class */
|
|
|
|
require_once( ABSPATH . WPINC . '/class-walker-page.php' );
|
|
|
|
|
|
|
|
/** Walker_PageDropdown class */
|
|
|
|
require_once( ABSPATH . WPINC . '/class-walker-page-dropdown.php' );
|
|
|
|
|
|
|
|
/** WP_Post class */
|
2015-08-26 12:40:21 +00:00
|
|
|
require_once( ABSPATH . WPINC . '/class-wp-post.php' );
|