acf_set_options_page_capability()

Last updated Feb 17, 2022

Description

This function has been deprecated. Please use the acf/options_page/settings filter instead.

Modifies the default Options Page capability setting.

The term ‘capability’ refers to the user roles and permissions that grant access to the Options Page. You can learn more about capability settings here.

Requirements

Parameters

acf_set_options_page_capability( $capability );
  • $capability (string) (Required) The capability for the default Options Page. Defaults to ‘edit_posts’.

Example

This example demonstrates how to change the default Options Page capability to ‘manage_options’.

functions.php

if( function_exists('acf_set_options_page_capability') ) {
    acf_set_options_page_capability('manage_options');
}

Related