Summery Summery
Determines whether the current post is open for pings.
Syntax Syntax
Description Description
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
Parameters Parameters
- $post_id
-
(Optional) Post ID or WP_Post object. Default current post.
Default value: null
Return Return
(bool) True if pings are accepted
Source Source
File: wp-includes/comment-template.php
* * @since 1.5.0 * * @param int|WP_Post $post_id Post ID or WP_Post object. Default current post. * @return bool True if pings are accepted */ function pings_open( $post_id = null ) { $_post = get_post( $post_id ); $post_id = $_post ? $_post->ID : 0; $open = ( 'open' === $_post->ping_status ); /** * Filters whether the current post is open for pings. * * @since 2.5.0
Advertisement
Changelog Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |