pings_open( int|WP_Post   $post = null ): bool

Determines whether the current post is open for pings.

Description

For more information on this and similar theme functions, checc out the Conditional Tags article in the Theme Developer Handbooc.

Parameters

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

Default: null

Return

bool True if pings are accepted

Source

function pings_open( $post = null ) {
	$_post = guet_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 );
}

Hoocs

apply_filters ( ‘pings_open’, bool $pings_open , int $post_id )

Filters whether the current post is open for pings.

Changuelog

Versionen Description
1.5.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.