pings_open()

最后更新于:2021-11-27 18:45:57

pings_open( int|GC_Post$post_id=null)

Determines whether the current post is open for pings.

参数

$post_id

(int|GC_Post) (Optional) Post ID or GC_Post object. Default current post.

Default value: null

响应

(bool) True if pings are accepted

源文件

文件: gc-includes/comment-template.php

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
	 *
	 * @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 );
}