Last active
November 1, 2021 09:37
-
-
Save izzygld/13e4ca8650093076d1f869fd6425bea7 to your computer and use it in GitHub Desktop.
Acf Options page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('acf/init', function () { | |
if ( function_exists( 'acf_add_options_sub_page' ) ){ | |
acf_add_options_sub_page( array( | |
'title' => 'Photo Settings', | |
'parent' => 'edit.php?post_type=photo', | |
'capability' => 'manage_options', | |
'show_in_graphql' => true, | |
) ); | |
} | |
});. | |
query MyQuery { | |
allSettings { | |
#Is your page here? | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment