s.' ), 'type' => 'array', 'items' => array( 'type' => 'string', ), ); /** * Filters collection parameters for the terms controller. * * The dynamic part of the filter `$this->taxonomy` refers to the taxonomy * slug for the controller. * * This filter registers the collection parameter, but does not map the * collection parameter to an internal WP_Term_Query parameter. Use the * `rest_{$this->taxonomy}_query` filter to set WP_Term_Query parameters. * * @since 4.7.0 * * @param array $query_params JSON Schema-formatted collection parameters. * @param WP_Taxonomy $taxonomy Taxonomy object. */ return apply_filters( "rest_{$this->taxonomy}_collection_params", $query_params, $taxonomy ); } /** * Checks that the taxonomy is valid. * * @since 4.7.0 * * @param string $taxonomy Taxonomy to check. * @return bool Whether the taxonomy is allowed for REST management. */ protected function check_is_taxonomy_allowed( $taxonomy ) { $taxonomy_obj = get_taxonomy( $taxonomy ); if ( $taxonomy_obj && ! empty( $taxonomy_obj->show_in_rest ) ) { return true; } return false; } }
Fatal error: Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/wesuppor/brandaholic.com.pk/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17 Stack trace: #0 /home/wesuppor/brandaholic.com.pk/wp-settings.php(282): require() #1 /home/wesuppor/brandaholic.com.pk/wp-config.php(119): require_once('/home/wesuppor/...') #2 /home/wesuppor/brandaholic.com.pk/wp-load.php(50): require_once('/home/wesuppor/...') #3 /home/wesuppor/brandaholic.com.pk/wp-blog-header.php(13): require_once('/home/wesuppor/...') #4 /home/wesuppor/brandaholic.com.pk/index.php(17): require('/home/wesuppor/...') #5 {main} thrown in /home/wesuppor/brandaholic.com.pk/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
WordPress › Error

There has been a critical error on this website.

Learn more about troubleshooting WordPress.