/htdocs/wp-includes/post.php
https://gitlab.com/VTTE/sitios-vtte · PHP · 1368 lines · 742 code · 112 blank · 514 comment · 82 complexity · 3f0c3e17a15f8c178d9d1cb139de1975 MD5 · raw file
- <?php
- /**
- * Core Post API
- *
- * @package WordPress
- * @subpackage Post
- */
- //
- // Post Type registration.
- //
- /**
- * Creates the initial post types when 'init' action is fired.
- *
- * See {@see 'init'}.
- *
- * @since 2.9.0
- */
- function create_initial_post_types() {
- register_post_type(
- 'post',
- array(
- 'labels' => array(
- 'name_admin_bar' => _x( 'Post', 'add new from admin bar' ),
- ),
- 'public' => true,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */
- 'capability_type' => 'post',
- 'map_meta_cap' => true,
- 'menu_position' => 5,
- 'menu_icon' => 'dashicons-admin-post',
- 'hierarchical' => false,
- 'rewrite' => false,
- 'query_var' => false,
- 'delete_with_user' => true,
- 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'post-formats' ),
- 'show_in_rest' => true,
- 'rest_base' => 'posts',
- 'rest_controller_class' => 'WP_REST_Posts_Controller',
- )
- );
- register_post_type(
- 'page',
- array(
- 'labels' => array(
- 'name_admin_bar' => _x( 'Page', 'add new from admin bar' ),
- ),
- 'public' => true,
- 'publicly_queryable' => false,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */
- 'capability_type' => 'page',
- 'map_meta_cap' => true,
- 'menu_position' => 20,
- 'menu_icon' => 'dashicons-admin-page',
- 'hierarchical' => true,
- 'rewrite' => false,
- 'query_var' => false,
- 'delete_with_user' => true,
- 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'page-attributes', 'custom-fields', 'comments', 'revisions' ),
- 'show_in_rest' => true,
- 'rest_base' => 'pages',
- 'rest_controller_class' => 'WP_REST_Posts_Controller',
- )
- );
- register_post_type(
- 'attachment',
- array(
- 'labels' => array(
- 'name' => _x( 'Media', 'post type general name' ),
- 'name_admin_bar' => _x( 'Media', 'add new from admin bar' ),
- 'add_new' => _x( 'Add New', 'add new media' ),
- 'edit_item' => __( 'Edit Media' ),
- 'view_item' => __( 'View Attachment Page' ),
- 'attributes' => __( 'Attachment Attributes' ),
- ),
- 'public' => true,
- 'show_ui' => true,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */
- 'capability_type' => 'post',
- 'capabilities' => array(
- 'create_posts' => 'upload_files',
- ),
- 'map_meta_cap' => true,
- 'menu_icon' => 'dashicons-admin-media',
- 'hierarchical' => false,
- 'rewrite' => false,
- 'query_var' => false,
- 'show_in_nav_menus' => false,
- 'delete_with_user' => true,
- 'supports' => array( 'title', 'author', 'comments' ),
- 'show_in_rest' => true,
- 'rest_base' => 'media',
- 'rest_controller_class' => 'WP_REST_Attachments_Controller',
- )
- );
- add_post_type_support( 'attachment:audio', 'thumbnail' );
- add_post_type_support( 'attachment:video', 'thumbnail' );
- register_post_type(
- 'revision',
- array(
- 'labels' => array(
- 'name' => __( 'Revisions' ),
- 'singular_name' => __( 'Revision' ),
- ),
- 'public' => false,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- '_edit_link' => 'revision.php?revision=%d', /* internal use only. don't use this when registering your own post type. */
- 'capability_type' => 'post',
- 'map_meta_cap' => true,
- 'hierarchical' => false,
- 'rewrite' => false,
- 'query_var' => false,
- 'can_export' => false,
- 'delete_with_user' => true,
- 'supports' => array( 'author' ),
- )
- );
- register_post_type(
- 'nav_menu_item',
- array(
- 'labels' => array(
- 'name' => __( 'Navigation Menu Items' ),
- 'singular_name' => __( 'Navigation Menu Item' ),
- ),
- 'public' => false,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- 'hierarchical' => false,
- 'rewrite' => false,
- 'delete_with_user' => false,
- 'query_var' => false,
- )
- );
- register_post_type(
- 'custom_css',
- array(
- 'labels' => array(
- 'name' => __( 'Custom CSS' ),
- 'singular_name' => __( 'Custom CSS' ),
- ),
- 'public' => false,
- 'hierarchical' => false,
- 'rewrite' => false,
- 'query_var' => false,
- 'delete_with_user' => false,
- 'can_export' => true,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- 'supports' => array( 'title', 'revisions' ),
- 'capabilities' => array(
- 'delete_posts' => 'edit_theme_options',
- 'delete_post' => 'edit_theme_options',
- 'delete_published_posts' => 'edit_theme_options',
- 'delete_private_posts' => 'edit_theme_options',
- 'delete_others_posts' => 'edit_theme_options',
- 'edit_post' => 'edit_css',
- 'edit_posts' => 'edit_css',
- 'edit_others_posts' => 'edit_css',
- 'edit_published_posts' => 'edit_css',
- 'read_post' => 'read',
- 'read_private_posts' => 'read',
- 'publish_posts' => 'edit_theme_options',
- ),
- )
- );
- register_post_type(
- 'customize_changeset',
- array(
- 'labels' => array(
- 'name' => _x( 'Changesets', 'post type general name' ),
- 'singular_name' => _x( 'Changeset', 'post type singular name' ),
- 'menu_name' => _x( 'Changesets', 'admin menu' ),
- 'name_admin_bar' => _x( 'Changeset', 'add new on admin bar' ),
- 'add_new' => _x( 'Add New', 'Customize Changeset' ),
- 'add_new_item' => __( 'Add New Changeset' ),
- 'new_item' => __( 'New Changeset' ),
- 'edit_item' => __( 'Edit Changeset' ),
- 'view_item' => __( 'View Changeset' ),
- 'all_items' => __( 'All Changesets' ),
- 'search_items' => __( 'Search Changesets' ),
- 'not_found' => __( 'No changesets found.' ),
- 'not_found_in_trash' => __( 'No changesets found in Trash.' ),
- ),
- 'public' => false,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- 'map_meta_cap' => true,
- 'hierarchical' => false,
- 'rewrite' => false,
- 'query_var' => false,
- 'can_export' => false,
- 'delete_with_user' => false,
- 'supports' => array( 'title', 'author' ),
- 'capability_type' => 'customize_changeset',
- 'capabilities' => array(
- 'create_posts' => 'customize',
- 'delete_others_posts' => 'customize',
- 'delete_post' => 'customize',
- 'delete_posts' => 'customize',
- 'delete_private_posts' => 'customize',
- 'delete_published_posts' => 'customize',
- 'edit_others_posts' => 'customize',
- 'edit_post' => 'customize',
- 'edit_posts' => 'customize',
- 'edit_private_posts' => 'customize',
- 'edit_published_posts' => 'do_not_allow',
- 'publish_posts' => 'customize',
- 'read' => 'read',
- 'read_post' => 'customize',
- 'read_private_posts' => 'customize',
- ),
- )
- );
- register_post_type(
- 'oembed_cache',
- array(
- 'labels' => array(
- 'name' => __( 'oEmbed Responses' ),
- 'singular_name' => __( 'oEmbed Response' ),
- ),
- 'public' => false,
- 'hierarchical' => false,
- 'rewrite' => false,
- 'query_var' => false,
- 'delete_with_user' => false,
- 'can_export' => false,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- 'supports' => array(),
- )
- );
- register_post_type(
- 'user_request',
- array(
- 'labels' => array(
- 'name' => __( 'User Requests' ),
- 'singular_name' => __( 'User Request' ),
- ),
- 'public' => false,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- 'hierarchical' => false,
- 'rewrite' => false,
- 'query_var' => false,
- 'can_export' => false,
- 'delete_with_user' => false,
- 'supports' => array(),
- )
- );
- register_post_type(
- 'wp_block',
- array(
- 'labels' => array(
- 'name' => _x( 'Blocks', 'post type general name' ),
- 'singular_name' => _x( 'Block', 'post type singular name' ),
- 'menu_name' => _x( 'Blocks', 'admin menu' ),
- 'name_admin_bar' => _x( 'Block', 'add new on admin bar' ),
- 'add_new' => _x( 'Add New', 'Block' ),
- 'add_new_item' => __( 'Add New Block' ),
- 'new_item' => __( 'New Block' ),
- 'edit_item' => __( 'Edit Block' ),
- 'view_item' => __( 'View Block' ),
- 'all_items' => __( 'All Blocks' ),
- 'search_items' => __( 'Search Blocks' ),
- 'not_found' => __( 'No blocks found.' ),
- 'not_found_in_trash' => __( 'No blocks found in Trash.' ),
- 'filter_items_list' => __( 'Filter blocks list' ),
- 'items_list_navigation' => __( 'Blocks list navigation' ),
- 'items_list' => __( 'Blocks list' ),
- 'item_published' => __( 'Block published.' ),
- 'item_published_privately' => __( 'Block published privately.' ),
- 'item_reverted_to_draft' => __( 'Block reverted to draft.' ),
- 'item_scheduled' => __( 'Block scheduled.' ),
- 'item_updated' => __( 'Block updated.' ),
- ),
- 'public' => false,
- '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
- 'show_ui' => true,
- 'show_in_menu' => false,
- 'rewrite' => false,
- 'show_in_rest' => true,
- 'rest_base' => 'blocks',
- 'rest_controller_class' => 'WP_REST_Blocks_Controller',
- 'capability_type' => 'block',
- 'capabilities' => array(
- // You need to be able to edit posts, in order to read blocks in their raw form.
- 'read' => 'edit_posts',
- // You need to be able to publish posts, in order to create blocks.
- 'create_posts' => 'publish_posts',
- 'edit_posts' => 'edit_posts',
- 'edit_published_posts' => 'edit_published_posts',
- 'delete_published_posts' => 'delete_published_posts',
- 'edit_others_posts' => 'edit_others_posts',
- 'delete_others_posts' => 'delete_others_posts',
- ),
- 'map_meta_cap' => true,
- 'supports' => array(
- 'title',
- 'editor',
- ),
- )
- );
- register_post_status(
- 'publish',
- array(
- 'label' => _x( 'Published', 'post status' ),
- 'public' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of published posts. */
- 'label_count' => _n_noop(
- 'Published <span class="count">(%s)</span>',
- 'Published <span class="count">(%s)</span>'
- ),
- )
- );
- register_post_status(
- 'future',
- array(
- 'label' => _x( 'Scheduled', 'post status' ),
- 'protected' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of scheduled posts. */
- 'label_count' => _n_noop(
- 'Scheduled <span class="count">(%s)</span>',
- 'Scheduled <span class="count">(%s)</span>'
- ),
- )
- );
- register_post_status(
- 'draft',
- array(
- 'label' => _x( 'Draft', 'post status' ),
- 'protected' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of draft posts. */
- 'label_count' => _n_noop(
- 'Draft <span class="count">(%s)</span>',
- 'Drafts <span class="count">(%s)</span>'
- ),
- 'date_floating' => true,
- )
- );
- register_post_status(
- 'pending',
- array(
- 'label' => _x( 'Pending', 'post status' ),
- 'protected' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of pending posts. */
- 'label_count' => _n_noop(
- 'Pending <span class="count">(%s)</span>',
- 'Pending <span class="count">(%s)</span>'
- ),
- 'date_floating' => true,
- )
- );
- register_post_status(
- 'private',
- array(
- 'label' => _x( 'Private', 'post status' ),
- 'private' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of private posts. */
- 'label_count' => _n_noop(
- 'Private <span class="count">(%s)</span>',
- 'Private <span class="count">(%s)</span>'
- ),
- )
- );
- register_post_status(
- 'trash',
- array(
- 'label' => _x( 'Trash', 'post status' ),
- 'internal' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of trashed posts. */
- 'label_count' => _n_noop(
- 'Trash <span class="count">(%s)</span>',
- 'Trash <span class="count">(%s)</span>'
- ),
- 'show_in_admin_status_list' => true,
- )
- );
- register_post_status(
- 'auto-draft',
- array(
- 'label' => 'auto-draft',
- 'internal' => true,
- '_builtin' => true, /* internal use only. */
- 'date_floating' => true,
- )
- );
- register_post_status(
- 'inherit',
- array(
- 'label' => 'inherit',
- 'internal' => true,
- '_builtin' => true, /* internal use only. */
- 'exclude_from_search' => false,
- )
- );
- register_post_status(
- 'request-pending',
- array(
- 'label' => _x( 'Pending', 'request status' ),
- 'internal' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of pending requests. */
- 'label_count' => _n_noop(
- 'Pending <span class="count">(%s)</span>',
- 'Pending <span class="count">(%s)</span>'
- ),
- 'exclude_from_search' => false,
- )
- );
- register_post_status(
- 'request-confirmed',
- array(
- 'label' => _x( 'Confirmed', 'request status' ),
- 'internal' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of confirmed requests. */
- 'label_count' => _n_noop(
- 'Confirmed <span class="count">(%s)</span>',
- 'Confirmed <span class="count">(%s)</span>'
- ),
- 'exclude_from_search' => false,
- )
- );
- register_post_status(
- 'request-failed',
- array(
- 'label' => _x( 'Failed', 'request status' ),
- 'internal' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of failed requests. */
- 'label_count' => _n_noop(
- 'Failed <span class="count">(%s)</span>',
- 'Failed <span class="count">(%s)</span>'
- ),
- 'exclude_from_search' => false,
- )
- );
- register_post_status(
- 'request-completed',
- array(
- 'label' => _x( 'Completed', 'request status' ),
- 'internal' => true,
- '_builtin' => true, /* internal use only. */
- /* translators: %s: Number of completed requests. */
- 'label_count' => _n_noop(
- 'Completed <span class="count">(%s)</span>',
- 'Completed <span class="count">(%s)</span>'
- ),
- 'exclude_from_search' => false,
- )
- );
- }
- /**
- * Retrieve attached file path based on attachment ID.
- *
- * By default the path will go through the 'get_attached_file' filter, but
- * passing a true to the $unfiltered argument of get_attached_file() will
- * return the file path unfiltered.
- *
- * The function works by getting the single post meta name, named
- * '_wp_attached_file' and returning it. This is a convenience function to
- * prevent looking up the meta name and provide a mechanism for sending the
- * attached filename through a filter.
- *
- * @since 2.0.0
- *
- * @param int $attachment_id Attachment ID.
- * @param bool $unfiltered Optional. Whether to apply filters. Default false.
- * @return string|false The file path to where the attached file should be, false otherwise.
- */
- function get_attached_file( $attachment_id, $unfiltered = false ) {
- $file = get_post_meta( $attachment_id, '_wp_attached_file', true );
- // If the file is relative, prepend upload dir.
- if ( $file && 0 !== strpos( $file, '/' ) && ! preg_match( '|^.:\\\|', $file ) ) {
- $uploads = wp_get_upload_dir();
- if ( false === $uploads['error'] ) {
- $file = $uploads['basedir'] . "/$file";
- }
- }
- if ( $unfiltered ) {
- return $file;
- }
- /**
- * Filters the attached file based on the given ID.
- *
- * @since 2.1.0
- *
- * @param string $file Path to attached file.
- * @param int $attachment_id Attachment ID.
- */
- return apply_filters( 'get_attached_file', $file, $attachment_id );
- }
- /**
- * Update attachment file path based on attachment ID.
- *
- * Used to update the file path of the attachment, which uses post meta name
- * '_wp_attached_file' to store the path of the attachment.
- *
- * @since 2.1.0
- *
- * @param int $attachment_id Attachment ID.
- * @param string $file File path for the attachment.
- * @return bool True on success, false on failure.
- */
- function update_attached_file( $attachment_id, $file ) {
- if ( ! get_post( $attachment_id ) ) {
- return false;
- }
- /**
- * Filters the path to the attached file to update.
- *
- * @since 2.1.0
- *
- * @param string $file Path to the attached file to update.
- * @param int $attachment_id Attachment ID.
- */
- $file = apply_filters( 'update_attached_file', $file, $attachment_id );
- $file = _wp_relative_upload_path( $file );
- if ( $file ) {
- return update_post_meta( $attachment_id, '_wp_attached_file', $file );
- } else {
- return delete_post_meta( $attachment_id, '_wp_attached_file' );
- }
- }
- /**
- * Return relative path to an uploaded file.
- *
- * The path is relative to the current upload dir.
- *
- * @since 2.9.0
- * @access private
- *
- * @param string $path Full path to the file.
- * @return string Relative path on success, unchanged path on failure.
- */
- function _wp_relative_upload_path( $path ) {
- $new_path = $path;
- $uploads = wp_get_upload_dir();
- if ( 0 === strpos( $new_path, $uploads['basedir'] ) ) {
- $new_path = str_replace( $uploads['basedir'], '', $new_path );
- $new_path = ltrim( $new_path, '/' );
- }
- /**
- * Filters the relative path to an uploaded file.
- *
- * @since 2.9.0
- *
- * @param string $new_path Relative path to the file.
- * @param string $path Full path to the file.
- */
- return apply_filters( '_wp_relative_upload_path', $new_path, $path );
- }
- /**
- * Retrieve all children of the post parent ID.
- *
- * Normally, without any enhancements, the children would apply to pages. In the
- * context of the inner workings of WordPress, pages, posts, and attachments
- * share the same table, so therefore the functionality could apply to any one
- * of them. It is then noted that while this function does not work on posts, it
- * does not mean that it won't work on posts. It is recommended that you know
- * what context you wish to retrieve the children of.
- *
- * Attachments may also be made the child of a post, so if that is an accurate
- * statement (which needs to be verified), it would then be possible to get
- * all of the attachments for a post. Attachments have since changed since
- * version 2.5, so this is most likely inaccurate, but serves generally as an
- * example of what is possible.
- *
- * The arguments listed as defaults are for this function and also of the
- * get_posts() function. The arguments are combined with the get_children defaults
- * and are then passed to the get_posts() function, which accepts additional arguments.
- * You can replace the defaults in this function, listed below and the additional
- * arguments listed in the get_posts() function.
- *
- * The 'post_parent' is the most important argument and important attention
- * needs to be paid to the $args parameter. If you pass either an object or an
- * integer (number), then just the 'post_parent' is grabbed and everything else
- * is lost. If you don't specify any arguments, then it is assumed that you are
- * in The Loop and the post parent will be grabbed for from the current post.
- *
- * The 'post_parent' argument is the ID to get the children. The 'numberposts'
- * is the amount of posts to retrieve that has a default of '-1', which is
- * used to get all of the posts. Giving a number higher than 0 will only
- * retrieve that amount of posts.
- *
- * The 'post_type' and 'post_status' arguments can be used to choose what
- * criteria of posts to retrieve. The 'post_type' can be anything, but WordPress
- * post types are 'post', 'pages', and 'attachments'. The 'post_status'
- * argument will accept any post status within the write administration panels.
- *
- * @since 2.0.0
- *
- * @see get_posts()
- * @todo Check validity of description.
- *
- * @global WP_Post $post Global post object.
- *
- * @param mixed $args Optional. User defined arguments for replacing the defaults. Default empty.
- * @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to
- * a WP_Post object, an associative array, or a numeric array, respectively. Default OBJECT.
- * @return WP_Post[]|int[] Array of post objects or post IDs.
- */
- function get_children( $args = '', $output = OBJECT ) {
- $kids = array();
- if ( empty( $args ) ) {
- if ( isset( $GLOBALS['post'] ) ) {
- $args = array( 'post_parent' => (int) $GLOBALS['post']->post_parent );
- } else {
- return $kids;
- }
- } elseif ( is_object( $args ) ) {
- $args = array( 'post_parent' => (int) $args->post_parent );
- } elseif ( is_numeric( $args ) ) {
- $args = array( 'post_parent' => (int) $args );
- }
- $defaults = array(
- 'numberposts' => -1,
- 'post_type' => 'any',
- 'post_status' => 'any',
- 'post_parent' => 0,
- );
- $parsed_args = wp_parse_args( $args, $defaults );
- $children = get_posts( $parsed_args );
- if ( ! $children ) {
- return $kids;
- }
- if ( ! empty( $parsed_args['fields'] ) ) {
- return $children;
- }
- update_post_cache( $children );
- foreach ( $children as $key => $child ) {
- $kids[ $child->ID ] = $children[ $key ];
- }
- if ( OBJECT == $output ) {
- return $kids;
- } elseif ( ARRAY_A == $output ) {
- $weeuns = array();
- foreach ( (array) $kids as $kid ) {
- $weeuns[ $kid->ID ] = get_object_vars( $kids[ $kid->ID ] );
- }
- return $weeuns;
- } elseif ( ARRAY_N == $output ) {
- $babes = array();
- foreach ( (array) $kids as $kid ) {
- $babes[ $kid->ID ] = array_values( get_object_vars( $kids[ $kid->ID ] ) );
- }
- return $babes;
- } else {
- return $kids;
- }
- }
- /**
- * Get extended entry info (<!--more-->).
- *
- * There should not be any space after the second dash and before the word
- * 'more'. There can be text or space(s) after the word 'more', but won't be
- * referenced.
- *
- * The returned array has 'main', 'extended', and 'more_text' keys. Main has the text before
- * the `<!--more-->`. The 'extended' key has the content after the
- * `<!--more-->` comment. The 'more_text' key has the custom "Read More" text.
- *
- * @since 1.0.0
- *
- * @param string $post Post content.
- * @return string[] {
- * Extended entry info.
- *
- * @type string $main Content before the more tag.
- * @type string $extended Content after the more tag.
- * @type string $more_text Custom read more text, or empty string.
- * }
- */
- function get_extended( $post ) {
- // Match the new style more links.
- if ( preg_match( '/<!--more(.*?)?-->/', $post, $matches ) ) {
- list($main, $extended) = explode( $matches[0], $post, 2 );
- $more_text = $matches[1];
- } else {
- $main = $post;
- $extended = '';
- $more_text = '';
- }
- // Leading and trailing whitespace.
- $main = preg_replace( '/^[\s]*(.*)[\s]*$/', '\\1', $main );
- $extended = preg_replace( '/^[\s]*(.*)[\s]*$/', '\\1', $extended );
- $more_text = preg_replace( '/^[\s]*(.*)[\s]*$/', '\\1', $more_text );
- return array(
- 'main' => $main,
- 'extended' => $extended,
- 'more_text' => $more_text,
- );
- }
- /**
- * Retrieves post data given a post ID or post object.
- *
- * See sanitize_post() for optional $filter values. Also, the parameter
- * `$post`, must be given as a variable, since it is passed by reference.
- *
- * @since 1.5.1
- *
- * @global WP_Post $post Global post object.
- *
- * @param int|WP_Post|null $post Optional. Post ID or post object. Defaults to global $post.
- * @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to
- * a WP_Post object, an associative array, or a numeric array, respectively. Default OBJECT.
- * @param string $filter Optional. Type of filter to apply. Accepts 'raw', 'edit', 'db',
- * or 'display'. Default 'raw'.
- * @return WP_Post|array|null Type corresponding to $output on success or null on failure.
- * When $output is OBJECT, a `WP_Post` instance is returned.
- */
- function get_post( $post = null, $output = OBJECT, $filter = 'raw' ) {
- if ( empty( $post ) && isset( $GLOBALS['post'] ) ) {
- $post = $GLOBALS['post'];
- }
- if ( $post instanceof WP_Post ) {
- $_post = $post;
- } elseif ( is_object( $post ) ) {
- if ( empty( $post->filter ) ) {
- $_post = sanitize_post( $post, 'raw' );
- $_post = new WP_Post( $_post );
- } elseif ( 'raw' == $post->filter ) {
- $_post = new WP_Post( $post );
- } else {
- $_post = WP_Post::get_instance( $post->ID );
- }
- } else {
- $_post = WP_Post::get_instance( $post );
- }
- if ( ! $_post ) {
- return null;
- }
- $_post = $_post->filter( $filter );
- if ( ARRAY_A == $output ) {
- return $_post->to_array();
- } elseif ( ARRAY_N == $output ) {
- return array_values( $_post->to_array() );
- }
- return $_post;
- }
- /**
- * Retrieve ancestors of a post.
- *
- * @since 2.5.0
- *
- * @param int|WP_Post $post Post ID or post object.
- * @return int[] Ancestor IDs or empty array if none are found.
- */
- function get_post_ancestors( $post ) {
- $post = get_post( $post );
- if ( ! $post || empty( $post->post_parent ) || $post->post_parent == $post->ID ) {
- return array();
- }
- $ancestors = array();
- $id = $post->post_parent;
- $ancestors[] = $id;
- while ( $ancestor = get_post( $id ) ) {
- // Loop detection: If the ancestor has been seen before, break.
- if ( empty( $ancestor->post_parent ) || ( $ancestor->post_parent == $post->ID ) || in_array( $ancestor->post_parent, $ancestors ) ) {
- break;
- }
- $id = $ancestor->post_parent;
- $ancestors[] = $id;
- }
- return $ancestors;
- }
- /**
- * Retrieve data from a post field based on Post ID.
- *
- * Examples of the post field will be, 'post_type', 'post_status', 'post_content',
- * etc and based off of the post object property or key names.
- *
- * The context values are based off of the taxonomy filter functions and
- * supported values are found within those functions.
- *
- * @since 2.3.0
- * @since 4.5.0 The `$post` parameter was made optional.
- *
- * @see sanitize_post_field()
- *
- * @param string $field Post field name.
- * @param int|WP_Post $post Optional. Post ID or post object. Defaults to global $post.
- * @param string $context Optional. How to filter the field. Accepts 'raw', 'edit', 'db',
- * or 'display'. Default 'display'.
- * @return string The value of the post field on success, empty string on failure.
- */
- function get_post_field( $field, $post = null, $context = 'display' ) {
- $post = get_post( $post );
- if ( ! $post ) {
- return '';
- }
- if ( ! isset( $post->$field ) ) {
- return '';
- }
- return sanitize_post_field( $field, $post->$field, $post->ID, $context );
- }
- /**
- * Retrieve the mime type of an attachment based on the ID.
- *
- * This function can be used with any post type, but it makes more sense with
- * attachments.
- *
- * @since 2.0.0
- *
- * @param int|WP_Post $post Optional. Post ID or post object. Defaults to global $post.
- * @return string|false The mime type on success, false on failure.
- */
- function get_post_mime_type( $post = null ) {
- $post = get_post( $post );
- if ( is_object( $post ) ) {
- return $post->post_mime_type;
- }
- return false;
- }
- /**
- * Retrieve the post status based on the post ID.
- *
- * If the post ID is of an attachment, then the parent post status will be given
- * instead.
- *
- * @since 2.0.0
- *
- * @param int|WP_Post $post Optional. Post ID or post object. Defaults to global $post..
- * @return string|false Post status on success, false on failure.
- */
- function get_post_status( $post = null ) {
- $post = get_post( $post );
- if ( ! is_object( $post ) ) {
- return false;
- }
- if ( 'attachment' == $post->post_type ) {
- if ( 'private' == $post->post_status ) {
- return 'private';
- }
- // Unattached attachments are assumed to be published.
- if ( ( 'inherit' == $post->post_status ) && ( 0 == $post->post_parent ) ) {
- return 'publish';
- }
- // Inherit status from the parent.
- if ( $post->post_parent && ( $post->ID != $post->post_parent ) ) {
- $parent_post_status = get_post_status( $post->post_parent );
- if ( 'trash' == $parent_post_status ) {
- return get_post_meta( $post->post_parent, '_wp_trash_meta_status', true );
- } else {
- return $parent_post_status;
- }
- }
- }
- /**
- * Filters the post status.
- *
- * @since 4.4.0
- *
- * @param string $post_status The post status.
- * @param WP_Post $post The post object.
- */
- return apply_filters( 'get_post_status', $post->post_status, $post );
- }
- /**
- * Retrieve all of the WordPress supported post statuses.
- *
- * Posts have a limited set of valid status values, this provides the
- * post_status values and descriptions.
- *
- * @since 2.5.0
- *
- * @return string[] Array of post status labels keyed by their status.
- */
- function get_post_statuses() {
- $status = array(
- 'draft' => __( 'Draft' ),
- 'pending' => __( 'Pending Review' ),
- 'private' => __( 'Private' ),
- 'publish' => __( 'Published' ),
- );
- return $status;
- }
- /**
- * Retrieve all of the WordPress support page statuses.
- *
- * Pages have a limited set of valid status values, this provides the
- * post_status values and descriptions.
- *
- * @since 2.5.0
- *
- * @return string[] Array of page status labels keyed by their status.
- */
- function get_page_statuses() {
- $status = array(
- 'draft' => __( 'Draft' ),
- 'private' => __( 'Private' ),
- 'publish' => __( 'Published' ),
- );
- return $status;
- }
- /**
- * Return statuses for privacy requests.
- *
- * @since 4.9.6
- * @access private
- *
- * @return array
- */
- function _wp_privacy_statuses() {
- return array(
- 'request-pending' => __( 'Pending' ), // Pending confirmation from user.
- 'request-confirmed' => __( 'Confirmed' ), // User has confirmed the action.
- 'request-failed' => __( 'Failed' ), // User failed to confirm the action.
- 'request-completed' => __( 'Completed' ), // Admin has handled the request.
- );
- }
- /**
- * Register a post status. Do not use before init.
- *
- * A simple function for creating or modifying a post status based on the
- * parameters given. The function will accept an array (second optional
- * parameter), along with a string for the post status name.
- *
- * Arguments prefixed with an _underscore shouldn't be used by plugins and themes.
- *
- * @since 3.0.0
- * @global array $wp_post_statuses Inserts new post status object into the list
- *
- * @param string $post_status Name of the post status.
- * @param array|string $args {
- * Optional. Array or string of post status arguments.
- *
- * @type bool|string $label A descriptive name for the post status marked
- * for translation. Defaults to value of $post_status.
- * @type bool|array $label_count Descriptive text to use for nooped plurals.
- * Default array of $label, twice.
- * @type bool $exclude_from_search Whether to exclude posts with this post status
- * from search results. Default is value of $internal.
- * @type bool $_builtin Whether the status is built-in. Core-use only.
- * Default false.
- * @type bool $public Whether posts of this status should be shown
- * in the front end of the site. Default false.
- * @type bool $internal Whether the status is for internal use only.
- * Default false.
- * @type bool $protected Whether posts with this status should be protected.
- * Default false.
- * @type bool $private Whether posts with this status should be private.
- * Default false.
- * @type bool $publicly_queryable Whether posts with this status should be publicly-
- * queryable. Default is value of $public.
- * @type bool $show_in_admin_all_list Whether to include posts in the edit listing for
- * their post type. Default is the opposite value
- * of $internal.
- * @type bool $show_in_admin_status_list Show in the list of statuses with post counts at
- * the top of the edit listings,
- * e.g. All (12) | Published (9) | My Custom Status (2)
- * Default is the opposite value of $internal.
- * @type bool $date_floating Whether the post has a floating creation date.
- * Default to false.
- * }
- * @return object
- */
- function register_post_status( $post_status, $args = array() ) {
- global $wp_post_statuses;
- if ( ! is_array( $wp_post_statuses ) ) {
- $wp_post_statuses = array();
- }
- // Args prefixed with an underscore are reserved for internal use.
- $defaults = array(
- 'label' => false,
- 'label_count' => false,
- 'exclude_from_search' => null,
- '_builtin' => false,
- 'public' => null,
- 'internal' => null,
- 'protected' => null,
- 'private' => null,
- 'publicly_queryable' => null,
- 'show_in_admin_status_list' => null,
- 'show_in_admin_all_list' => null,
- 'date_floating' => null,
- );
- $args = wp_parse_args( $args, $defaults );
- $args = (object) $args;
- $post_status = sanitize_key( $post_status );
- $args->name = $post_status;
- // Set various defaults.
- if ( null === $args->public && null === $args->internal && null === $args->protected && null === $args->private ) {
- $args->internal = true;
- }
- if ( null === $args->public ) {
- $args->public = false;
- }
- if ( null === $args->private ) {
- $args->private = false;
- }
- if ( null === $args->protected ) {
- $args->protected = false;
- }
- if ( null === $args->internal ) {
- $args->internal = false;
- }
- if ( null === $args->publicly_queryable ) {
- $args->publicly_queryable = $args->public;
- }
- if ( null === $args->exclude_from_search ) {
- $args->exclude_from_search = $args->internal;
- }
- if ( null === $args->show_in_admin_all_list ) {
- $args->show_in_admin_all_list = ! $args->internal;
- }
- if ( null === $args->show_in_admin_status_list ) {
- $args->show_in_admin_status_list = ! $args->internal;
- }
- if ( null === $args->date_floating ) {
- $args->date_floating = false;
- }
- if ( false === $args->label ) {
- $args->label = $post_status;
- }
- if ( false === $args->label_count ) {
- // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralPlural
- $args->label_count = _n_noop( $args->label, $args->label );
- }
- $wp_post_statuses[ $post_status ] = $args;
- return $args;
- }
- /**
- * Retrieve a post status object by name.
- *
- * @since 3.0.0
- *
- * @global array $wp_post_statuses List of post statuses.
- *
- * @see register_post_status()
- *
- * @param string $post_status The name of a registered post status.
- * @return object|null A post status object.
- */
- function get_post_status_object( $post_status ) {
- global $wp_post_statuses;
- if ( empty( $wp_post_statuses[ $post_status ] ) ) {
- return null;
- }
- return $wp_post_statuses[ $post_status ];
- }
- /**
- * Get a list of post statuses.
- *
- * @since 3.0.0
- *
- * @global array $wp_post_statuses List of post statuses.
- *
- * @see register_post_status()
- *
- * @param array|string $args Optional. Array or string of post status arguments to compare against
- * properties of the global `$wp_post_statuses objects`. Default empty array.
- * @param string $output Optional. The type of output to return, either 'names' or 'objects'. Default 'names'.
- * @param string $operator Optional. The logical operation to perform. 'or' means only one element
- * from the array needs to match; 'and' means all elements must match.
- * Default 'and'.
- * @return array A list of post status names or objects.
- */
- function get_post_stati( $args = array(), $output = 'names', $operator = 'and' ) {
- global $wp_post_statuses;
- $field = ( 'names' == $output ) ? 'name' : false;
- return wp_filter_object_list( $wp_post_statuses, $args, $operator, $field );
- }
- /**
- * Whether the post type is hierarchical.
- *
- * A false return value might also mean that the post type does not exist.
- *
- * @since 3.0.0
- *
- * @see get_post_type_object()
- *
- * @param string $post_type Post type name
- * @return bool Whether post type is hierarchical.
- */
- function is_post_type_hierarchical( $post_type ) {
- if ( ! post_type_exists( $post_type ) ) {
- return false;
- }
- $post_type = get_post_type_object( $post_type );
- return $post_type->hierarchical;
- }
- /**
- * Determines whether a post type is registered.
- *
- * For more information on this and similar theme functions, check out
- * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
- * Conditional Tags} article in the Theme Developer Handbook.
- *
- * @since 3.0.0
- *
- * @see get_post_type_object()
- *
- * @param string $post_type Post type name.
- * @return bool Whether post type is registered.
- */
- function post_type_exists( $post_type ) {
- return (bool) get_post_type_object( $post_type );
- }
- /**
- * Retrieves the post type of the current post or of a given post.
- *
- * @since 2.1.0
- *
- * @param int|WP_Post|null $post Optional. Post ID or post object. Default is global $post.
- * @return string|false Post type on success, false on failure.
- */
- function get_post_type( $post = null ) {
- $post = get_post( $post );
- if ( $post ) {
- return $post->post_type;
- }
- return false;
- }
- /**
- * Retrieves a post type object by name.
- *
- * @since 3.0.0
- * @since 4.6.0 Object returned is now an instance of `WP_Post_Type`.
- *
- * @global array $wp_post_types List of post types.
- *
- * @see register_post_type()
- *
- * @param string $post_type The name of a registered post type.
- * @return WP_Post_Type|null WP_Post_Type object if it exists, null otherwise.
- */
- function get_post_type_object( $post_type ) {
- global $wp_post_types;
- if ( ! is_scalar( $post_type ) || empty( $wp_post_types[ $post_type ] ) ) {
- return null;
- }
- return $wp_post_types[ $post_type ];
- }
- /**
- * Get a list of all registered post type objects.
- *
- * @since 2.9.0
- *
- * @global array $wp_post_types List of post types.
- *
- * @see register_post_type() for accepted arguments.
- *
- * @param array|string $args Optional. An array of key => value arguments to match against
- * the post type objects. Default empty array.
- * @param string $output Optional. The type of output to return. Accepts post type 'names'
- * or 'objects'. Default 'names'.
- * @param string $operator Optional. The logical operation to perform. 'or' means only one
- * element from the array needs to match; 'and' means all elements
- * must match; 'not' means no elements may match. Default 'and'.
- * @return string[]|WP_Post_Type[] An array of post type names or objects.
- */
- function get_post_types( $args = array(), $output = 'names', $operator = 'and' ) {
- global $wp_post_types;
- $field = ( 'names' == $output ) ? 'name' : false;
- return wp_filter_object_list( $wp_post_types, $args, $operator, $field );
- }
- /**
- * Registers a post type.
- *
- * Note: Post type registrations should not be hooked before the
- * {@see 'init'} action. Also, any taxonomy connections should be
- * registered via the `$taxonomies` argument to ensure consistency
- * when hooks such as {@see 'parse_query'} or {@see 'pre_get_posts'}
- * are used.
- *
- * Post types can support any number of built-in core features such
- * as meta boxes, custom fields, post thumbnails, post statuses,
- * comments, and more. See the `$supports` argument for a complete
- * list of supported features.
- *
- * @since 2.9.0
- * @since 3.0.0 The `show_ui` argument is now enforced on the new post screen.
- * @since 4.4.0 The `show_ui` argument is now enforced on the post type listing
- * screen and post editing screen.
- * @since 4.6.0 Post type object returned is now an instance of `WP_Post_Type`.
- * @since 4.7.0 Introduced `show_in_rest`, `rest_base` and `rest_controller_class`
- * arguments to register the post type in REST API.
- * @since 5.3.0 The `supports` argument will now accept an array of arguments for a feature.
- * .
- * @global array $wp_post_types List of post types.
- *
- * @param string $post_type Post type key. Must not exceed 20 characters and may
- * only contain lowercase alphanumeric characters, dashes,
- * and underscores. See sanitize_key().
- * @param array|string $args {
- * Array or string of arguments for registering a post type.
- *
- * @type string $label Name of the post type shown in the menu. Usually plural.
- * Default is value of $labels['name'].
- * @type array $labels An array of labels for this post type. If not set, post
- * labels are inherited for non-hierarchical types and page
- * labels for hierarchical ones. See get_post_type_labels() for a full
- * list of supported labels.
- * @type string $description A short descriptive summary of what the post type is.
- * Default empty.
- * @type bool $public Whether a post type is intended for use publicly either via
- * the admin interface or by front-end users. While the default
- * settings of $exclude_from_search, $publicly_queryable, $show_ui,
- * and $show_in_nav_menus are inherited from public, each does not
- * rely on this relationship and controls a very specific intention.
- * Default false.
- * @type bool $hierarchical Whether the post type is hierarchical (e.g. page). Default false.
- * @type bool $exclude_from_search Whether to exclude posts with this post type from front end search
- * results. Default is the opposite value of $public.
- * @type bool $publicly_queryable Whether queries can be performed on the front end for the post type
- * as part of parse_request(). Endpoints would include:
- * * ?post_type={post_type_key}
- * * ?{post_type_key}={single_post_slug}
- * * ?{post_type_query_var}={single_post_slug}
- * If not set, the default is inherited from $public.
- * @type bool $show_ui Whether to generate and allow a UI for managing this post type in the
- * admin. Default is value of $public.
- * @type bool|string $show_in_menu Where to show the post type in the admin menu. To work, $show_ui
- * must be true. If true, the post type is shown in its own top level
- * menu. If false, no menu is shown. If a string of an existing top
- * level menu (eg. 'tools.php' or 'edit.php?post_type=page'), the post
- * type will be placed as a sub-menu of that.
- * Default is value of $show_ui.
- * @type bool $show_in_nav_menus Makes this post type available for selection in navigation menus.
- * Default is value of $public.
- * @type bool $show_in_admin_bar Makes this post type available via the admin bar. Default is value
- * of $show_in_menu.
- * @type bool $show_in_rest Whether to include the post type in the REST API. Set this to true
- * for the post type to be available in the block editor.
- * @type string $rest_base To change the base url of REST API route. Default is $post_type.
- * @type string $rest_controller_class REST API Controller class name. Default is 'WP_REST_Posts_Controller'.
- * @type int $menu_position The position in the menu order the post type should appear. To work,
- * $show_in_menu must be true. Default null (at the bottom).
- * @type string $menu_icon The url to the icon to be used for this menu. Pass a base64-encoded
- * SVG using a data URI, which will be colored to match the color scheme
- * -- this should begin with 'data:image/svg+xml;base64,'. Pass the name
- * of a Dashicons helper class to use a font icon, e.g.
- * 'dashicons-chart-pie'. Pass 'none' to leave div.wp-menu-image empty
- * so an icon can be added via CSS. Defaults to use the posts icon.
- * @type string $capability_type The string to use to build the read, edit, and delete capabilities.
- * May be passed as an array to allow for alternative plurals when using
- * this argument as a base to construct the capabilities, e.g.
- * array('story', 'stories'). Default 'post'.
- * @type array $capabilities Array of capabilities for this post type. $capability_type is used
- * as a base to construct capabilities by default.
- * See get_post_type_capabilities().
- * @type bool $map_meta_cap Whether to use the internal default meta capability handling.
- * Default false.
- * @type array $supports Core feature(s) the post type supports. Serves as an alias for calling
- * add_post_type_support() directly. Core features include 'title',
- * 'editor', 'comments', 'revisions', 'trackbacks', 'author', 'excerpt',
- * 'page-attributes', 'thumbnail', 'custom-fields', and 'post-formats'.
- * Additionally, the 'revisions' feature dictates whether the post type
- * will store revisions, and the 'comments' feature dictates whether the
- * comments count will show on the edit screen. A feature can also be
- * specified as an array of arguments to provide additional information
- * about supporting that feature. Example: `array( 'my_featu