shenandoahliterary / Shenandoah

Project management for development and production of Shenandoah literary magazine
1 stars 0 forks source link

How to create an options page using WP ACF #126

Open jeffreybarry opened 2 years ago

jeffreybarry commented 2 years ago

WP ACF has to the ability to create an Options page in the WP Dashboard. This options page could be a good place to store data that needs importing into the theme, e.g., volume number, issue, date, etc.

WP ACF documentation on Options page

jeffreybarry commented 2 years ago

Creating an options page is super easy. Need to edit functions.php file with code supplied by WP ACF:

if( function_exists('acf_add_options_page') ) {

    acf_add_options_page();

}