get_enclosed()
Retrieves enclosures already enclosed for a post.
Хуки из функции
Возвращает
Строку[]
. Array of enclosures for the given post.
Использование
get_enclosed( $post_id );
- $post_id(int) (обязательный)
- Post ID.
Список изменений
С версии 1.5.0 | Введена. |
Код get_enclosed() get enclosed WP 6.7.2
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 ); }