get_pung

函数
get_pung ( $post )
参数
  • (int|WP_Post) $post Post ID or object.
    Required:
返回值
  • (string[]|false) Array of URLs already pinged for the given post, false if the post is not found.
定义位置
相关方法
get_pageget_to_pingget_pluginsget_pagesget_tag
引入
1.5.0
弃用
-

get_pung函数是一个WordPress的函数,它检索一个数组的URLs,这些URLs已经ping了一个特定的文章: 这个函数把文章的ID作为一个参数,并返回一个URL数组。

检索已经为一个文章ping过的URL。

function get_pung( $post ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return false;
	}

	$pung = trim( $post->pinged );
	$pung = preg_split( '/s/', $pung );

	/**
	 * Filters the list of already-pinged URLs for the given post.
	 *
	 * @since 2.0.0
	 *
	 * @param string[] $pung Array of URLs already pinged for the given post.
	 */
	return apply_filters( 'get_pung', $pung );
}

常见问题

FAQs
查看更多 >