acf_get_ui_options_pages()
Returns and array of ACF UI options pages for the given $filter.
Хуков нет.
Возвращает
Массив
.
Использование
acf_get_ui_options_pages( $filter );
- $filter(массив)
- An array of args to filter results by.
По умолчанию: array()
Список изменений
С версии 6.2 | Введена. |
Код acf_get_ui_options_pages() acf get ui options pages ACF 6.4.2
function acf_get_ui_options_pages( array $filter = array() ) { return acf_get_internal_post_type_posts( 'acf-ui-options-page', $filter ); }