ize_callback_func 0U 1d- 0 @ KU P$ serialize_precision U vU a 0U 1d- LU Try LU NU ߢ>b 8U OU jտU PU jaNp@U QU `r CU RU s DU RU -7w EU SU @FU `TU b*Bَ`GU 0UU ?EOxHU VU "rop3U PU ,\U U bA%ӯU @U <e0x U U `9 p U U AU 0 ?KU CpY -1 @ oKU r/s disable_functions U zU a 0U 1d- pU 1d- zend.ena0 0 KU a U pU expose_p0 0 _KU ֵ 1 @ oKU bA%ӯ zend.exception_ignore_args 1 U U 1 P @U <e0x # zend.exception_string_param_max_len ! 5 >;U 1d- `}U a U 1d- max_inpu0 0 KU յ 0 @ _KU A max_execution_time U P~U U 1d- ) U `U memory_limit U U U user_dir0 0 ?!JU ! U U enable_d0 0 JU U `U file_upl0 0 OKU W2lNa U U allow_ur0 0 KU ֵ 1 @ JU eA upload_max_filesize 24q U 1d- 0 @ KU VΦ max_file_uploads U U U 1d- ~ aa U 1d- SMTP fun0 0 KU ֵ 1 @ KU &G[ allow_url_include A1 U 1d- U 0 @ KU 8; default_socket_timeout U U 1d- 60 0 @ KU R# cli_server.color T9Q&aQ U 1d- 1 U 0 @ /KU 1J pdo_mysql.default_socket U U U 2Td U 1d- smtp_por0 0 KU 6w localhost YD1 U `U odbc.max 0 /KU CpY -1 U U 0U `U error_re0 0 OKU Mx| 128M PU U 0U isplay_errors 1 pU U log_erro` 0 KU g1 22527 @ KU IXdi* display_startup_errors ^ U 1d- 0 0 /KU ֵ 1 ` @ KU NDQ&a ignore_repeated_errors c A U 1d- 0 @ KU T9Q&a ignore_repeated_source U U 1d- h ! U 1d- variable0 0 KU ֵ 1 k pU U request_0 0 KU [| GPCS n a pU U post_max0 0 ?KU sY GP P @ KU L='p register_argc_argv s A U 1d- 0 @ KU 2Td auto_globals_jit U U U 1d- _taxonomies_for_indexables(), true ); } /** * This builds a list of indexable taxonomies. * * @return array The indexable taxonomies. */ public function get_indexable_taxonomies() { $public_taxonomies = $this->get_public_taxonomies(); $excluded_taxonomies = $this->get_excluded_taxonomies_for_indexables(); // `array_values`, to make sure that the keys are reset. return \array_values( \array_diff( $public_taxonomies, $excluded_taxonomies ) ); } /** * Returns an array of complete taxonomy objects for all indexable taxonomies. * * @return array List of indexable indexables objects. */ public function get_indexable_taxonomy_objects() { $taxonomy_objects = []; $indexable_taxonomies = $this->get_indexable_taxonomies(); foreach ( $indexable_taxonomies as $taxonomy ) { $taxonomy_object = \get_taxonomy( $taxonomy ); if ( ! empty( $taxonomy_object ) ) { $taxonomy_objects[ $taxonomy ] = $taxonomy_object; } } return $taxonomy_objects; } }