pings_open()
Whether the current post is open for pings.
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
1 time — 0.000049 sec (very fast) | 50000 times — 0.64 sec (very fast) | PHP 7.0.14, WP 4.7
Hooks from the function
Return
true|false
. True if pings are accepted
Usage
pings_open( $post_id );
- $post_id(int|WP_Post)
- Post ID or WP_Post object.
Default: current post
Changelog
Since 1.5.0 | Introduced. |
Code of pings_open() pings open WP 6.0
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 ); }