Other (category)
| comments_open() | Checks if commenting is open for the specified post. |
| get_extended() | Divides content into 2 parts: before <!--more--> and after it. Returns an array with the resulting parts. |
| get_lastpostdate() | Gets the date and time when the last post was published on the site. |
| get_lastpostmodified() | Gets the date and time when the specified type of post was last edited. |
| get_post_embed_html() | Gets the ready HTML code for embedding the specified post using oEmbed. This code is intended to be used for embedding the post on another resource. |
| get_post_embed_url() | Gets the URL to be used in an iframe for embedding the specified post on another site (oEmbed format). |
| get_post_parent() | Gets the parent post object for the specified or current post in the loop. |
| get_post_stati() | Gets all existing post statuses as an array of names or an array of objects. |
| get_post_status_object() | Gets the data object of the specified post status. |
| get_post_statuses() | Returns an array of the following basic post statuses: Draft, Pending, Private, Publish. |
| get_post_timestamp() | Gets the publication or modification time of a post as a Unix timestamp (1270995315). |
| has_post_parent() | Checks if there is a parent post for the specified or current post in the loop. |
| is_sticky() | Checks if the current post is attached to the top of the home page posts query. Conditional tag. |
| pings_open() | Checks if the current post is allowed to receive pings. Conditional tag. |
| post_exists() | Determine if a post with the specified title (post_title) exists. In addition, for the check, you can pass post_content and post_date. |
| sanitize_post() | Clears each field of the specified post object/array. |
| the_shortlink() | Outputs a short link to the current post, for example: /?p=1234. |
| url_to_postid() | Gets post, page ID by transmitted URL. Examine a URL and try to determine the post ID it represents. |
| wp_embed_register_handler() | Registers an Embed handler. This is a handler that turns a link in the content into HTML code. |
| WP_Embed::delete_oembed_caches() | Deletes all oEmbed cache for the specified post. |
| wp_get_canonical_url() | Gets the canonical URL of a post. |
| wp_get_shortlink() | Returns a short link to a post. |
| wp_oembed_add_provider() | Adds an oEmbed provider. This is a URL that will be parsed in the content to output HTML code from another site. |
| wp_transition_post_status() | Fires action hooks related to the transitioning of a post's status. (from draft to publish, from publish to private, etc.). |