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



wp_options_connectors_intercept_render › WordPress Function

Sincen/a
Deprecatedn/a
wp_options_connectors_intercept_render ( No parameters )
Defined at:
Codex:

Intercept admin_init to render the page early.

This bypasses the default WordPress admin template.


Source

function wp_options_connectors_intercept_render() {
	// phpcs:ignore WordPress.Security.NonceVerification.Recommended
	if ( isset( $_GET['page'] ) && 'options-connectors' === $_GET['page'] ) {
		wp_options_connectors_render_page();
		exit;
	}
}