mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
cd99e0cfff
Creates: `class-wp-post.php` `post-functions.php` `post.php` contains only top-level code. Class file only contains the class. Functions file only contains functions. See #33413. Built from https://develop.svn.wordpress.org/trunk@33759 git-svn-id: http://core.svn.wordpress.org/trunk@33727 1a063a9b-81f0-0310-95a4-ce76da25c4cd
12 lines
234 B
PHP
12 lines
234 B
PHP
<?php
|
|
/**
|
|
* Post functions and post utility function.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Post
|
|
* @since 1.5.0
|
|
*/
|
|
|
|
require_once( ABSPATH . WPINC . '/post-functions.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-post.php' );
|