Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. // register a top-level options page
  4. if ( function_exists( 'acf_add_options_page' ) ) {
  5. acf_add_options_page( [
  6. 'page_title' => 'My Options Page',
  7. 'menu_title' => 'My Options Page',
  8. 'menu_slug' => 'my-options-page',
  9. 'capability' => 'edit_posts',
  10. 'parent_slug' => '',
  11. 'position' => 3,
  12. 'icon_url' => false,
  13. 'redirect' => false,
  14. 'post_id' => 'options',
  15. 'autoload' => false,
  16. 'update_button' => 'Update',
  17. ] );
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement