pings_open() WordPress Function
The pings_open() function allows for trackbacks and pingbacks to be sent when a post is published. This function should be used when creating a new post, or editing an existing post.
pings_open( int|WP_Post $post_id = null ) #
Determines whether the current post is open for pings.
Description
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
Parameters
Return
(bool) True if pings are accepted
Source
File: wp-includes/comment-template.php
function pings_open( $post_id = null ) { $_post = get_post( $post_id ); $post_id = $_post ? $_post->ID : 0; $open = ( $_post && ( 'open' === $_post->ping_status ) ); /** * Filters whether the current post is open for pings. * * @since 2.5.0 * * @param bool $open Whether the current post is open for pings. * @param int $post_id The post ID. */ return apply_filters( 'pings_open', $open, $post_id ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |