acf_get_ui_options_page_edit_link()ACF 6.2

Checks if the current user can edit the UI options page and returns the edit URL.

No Hooks.

Returns

String.

Usage

acf_get_ui_options_page_edit_link( $post_id );
$post_id(int) (required)
The ACF UI options page ID.

Changelog

Since 6.2 Introduced.

acf_get_ui_options_page_edit_link() code ACF 6.8.8

function acf_get_ui_options_page_edit_link( $post_id ) {
	return acf_get_internal_post_type_edit_link( $post_id, 'acf-ui-options-page' );
}