get_page()
Устарела с версии 3.5.0. Больше не поддерживается и может быть удалена. Используйте get_post().
Retrieves page data given a page ID or page object.
Use get_post() instead of get_page().
Хуков нет.
Возвращает
WP_Post|Массив|null
. WP_Post or array on success, null on failure.
Использование
get_page( $page, $output, $filter );
- $page(int|WP_Post) (обязательный)
- Page object or page ID. Passed by reference.
- $output(строка)
- The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to a WP_Post object, an associative array, or a numeric array, respectively.
По умолчанию: OBJECT - $filter(строка)
- How the return value should be filtered. Accepts 'raw', 'edit', 'db', 'display'.
По умолчанию: 'raw'
Список изменений
С версии 1.5.1 | Введена. |
Устарела с 3.5.0 | Use get_post() |
Код get_page() get page WP 6.7.1
function get_page( $page, $output = OBJECT, $filter = 'raw' ) { return get_post( $page, $output, $filter ); }