Overview
The options page feature provides a set of functions to add extra admin pages to edit ACF fields! Each admin page can be fully customized (see code examples below), and sub admin pages can be created too!
All data saved on an options page is global. This means it is not attached to any particular post or page, but is saved in the wp_options table. This allows the data to be displayed on any page throughout the website (good for header and footer data)!
Requirements
To make use of the options page feature, you will need a copy of ACF PRO (ACF v5), or the options page add-on (ACF v4)
Basic Usage
To create an options page, simply open up your functions.php file and add the following line of code:
functions.php
if( function_exists('acf_add_options_page') ) {
acf_add_options_page();
}
Without passing any parameters to this function, the default options page will be added to your wp-admin sidebar.

Reviews
There are no reviews yet.