wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_enclosed › WordPress Function

Since1.5.0
已弃用n/a
get_enclosed ( $post_id )
参数:
  • (int) $post_id Post ID.
    Required: Yes
返回:
  • (string[]) Array of enclosures for the given post.
定义在:
文档:

Retrieves enclosures already enclosed for a post.



源码

function get_enclosed( $post_id ) {
	$custom_fields = get_post_custom( $post_id );
	$pung          = array();
	if ( ! is_array( $custom_fields ) ) {
		return $pung;
	}

	foreach ( $custom_fields as $key => $val ) {
		if ( 'enclosure' !== $key || ! is_array( $val ) ) {
			continue;
		}
		foreach ( $val as $enc ) {
			$enclosure = explode( "\n", $enc );
			$pung[]    = trim( $enclosure[0] );
		}
	}

	/**
	 * Filters the list of enclosures already enclosed for the given post.
	 *
	 * @since 2.0.0
	 *
	 * @param string[] $pung    Array of enclosures for the given post.
	 * @param int      $post_id Post ID.
	 */
	return apply_filters( 'get_enclosed', $pung, $post_id );
}