mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
6069a4b2f6
See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@34401 git-svn-id: http://core.svn.wordpress.org/trunk@34365 1a063a9b-81f0-0310-95a4-ce76da25c4cd
21 lines
449 B
PHP
21 lines
449 B
PHP
<?php
|
|
/**
|
|
* Core Post API
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Post
|
|
* @since 1.5.0
|
|
*/
|
|
|
|
/** Core posts functionality */
|
|
require_once( ABSPATH . WPINC . '/post-functions.php' );
|
|
|
|
/** 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 */
|
|
require_once( ABSPATH . WPINC . '/class-wp-post.php' );
|