pings_open() – Determines whether the current post is open for pings.

You appear to be a bot. Output may be restricted

Description

Determines whether the current post is open for pings.

For more information on this and similar theme functions, check out the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ Conditional Tags} article in the Theme Developer Handbook.

Usage

$bool = pings_open( $post );

Parameters

$post
( int|WP_Post ) optional – Post ID or WP_Post object. Default current post.

Returns

bool True if pings are accepted

Source

File name: wordpress/wp-includes/comment-template.php


Lines:

1 to 18 of 18
function pings_open( $post = null ) {
  $_post = get_post( $post );

  $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 );
}
 

 View on GitHub View on Trac