mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
`post-template.php` loads after `post.php` in `wp-settings.php`. It could probably also be loaded in `post.php`, but avoiding that for the moment. See #33413. git-svn-id: https://develop.svn.wordpress.org/trunk@34109 602fd350-edb4-49c9-b593-d223f7449a82
21 lines
477 B
PHP
21 lines
477 B
PHP
<?php
|
|
/**
|
|
* Post functions and post utility function.
|
|
*
|
|
* @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' );
|