wpseek.com
A WordPress-centric search engine for devs and theme authors



get_site_editor_routes › WordPress Function

Sincen/a
Deprecatedn/a
get_site_editor_routes ( No parameters )
Returns:
  • (array) Array of route objects.
Defined at:
Codex:

Get all registered routes for the site-editor page.



Source

function get_site_editor_routes() {
		global $wp_site_editor_routes;
		return $wp_site_editor_routes ?? array();
	}
}