wp-includes/comment-template.php:1340Determines whether the current post is open for pings.
$postint|WP_PostoptionalnullboolOne hook fires while pings_open() runs, in this order:
Filters whether the current post is open for pings.
function pings_open( $post = null ) { $_post = get_post( $post ); $post_id = $_post ? $_post->ID : 0; $pings_open = ( $_post && ( 'open' === $_post->ping_status ) ); /** * Filters whether the current post is open for pings. * * @since 2.5.0 * * @param bool $pings_open Whether the current post is open for pings. * @param int $post_id The post ID. */ return apply_filters( 'pings_open', $pings_open, $post_id );}Introduced in 1.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/comment-template.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.