Opens in a new tab
10th Feb '23
/
0 comments

CPT Submenu Items in ACF Pro Options Admin Menu

This Pro tutorial provides the steps to add links to

  • a taxonomy terms
  • a custom post type's "Add New"
  • a custom post type's listing

admin pages under an Options page created with ACF Pro.

All code mentioned in this tutorial is to be added in the child theme's functions.php or a code snippets plugin.

Step 1

Let's create an ACF Options page by adding:

// Add ACF Options page. if ( function_exists( 'acf_add_options_page' ) ) { $options = [ 'page_title' => __( 'Site Options' ), 'position' => '2.38856', // as 3rd item 'menu_slug' => 'site-options', // if left empty, ACF will use the page title slug but prefixes it with acf-options-. ]; acf_add_options_page( $options ); }

To add fields in this options page, go to Custom Fields → Add New and create a new field group. For the location, select "Site Options".

Step 2

Add the ACF Options page as a submenu. This will be the first submenu item.

This is a BricksLabs Pro tutorial.

For full access login below or create your BricksLabs Pro account

Get access to all 633 Bricks code tutorials with BricksLabs Pro

Related Tutorials..

Pro
ACF Flexible Content Field – Layout Labels and Sub Field Labels

ACF Flexible Content Field – Layout Labels and Sub Field Labels

How to output the text of layout labels and/or sub field labels using the Flexible Content field of ACF Pro.
Categories:
Pro
Merging ACF Gallery Images with Featured Image in Bricks

Merging ACF Gallery Images with Featured Image in Bricks

Updated on 12 Mar 2025 In the Bricks Facebook group a user asks: Merging images from different fields into a single gallery Hi, I have…
Categories:
ACF Relationship: Count of Related Posts

ACF Relationship: Count of Related Posts

Looking to get the number of CPT B posts related to a CPT A post when using a Relationship field with ACF? Here's a custom…
Categories:
Tags:
Pro
Conditional Output Based on ACF Date Field in Bricks

Conditional Output Based on ACF Date Field in Bricks

Updated on 1 Aug 2024 Looking to have a Section or other elements in Bricks rendered on the frontend only if today's date is before…
Categories:
Pro
ACF Relationship: Show all other events related to the artists of the current event

ACF Relationship: Show all other events related to the artists of the current event

How all other events related to the artists of the current event can be output in a Bricks query loop.
Categories:
Pro
Limit Bricks Users Query to Current Post’s User-type ACF Field Value

Limit Bricks Users Query to Current Post’s User-type ACF Field Value

Consider this scenario with ACF: "John Briley" user: "Gandhi" movie: The requirement is to show John Briley as the author when Gandhi movie item is…
Categories: