Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. /**
  2. * Filter for any custom post type Otions page
  3. * // array example:
  4. // array( 'page=acf-options-11-videos' => 'videos' )
  5. // the 'flo_theme_videos_options_page' will be build using 'flo_theme_%array_key%_options_page'
  6. // where %array_key% is taken from the array defined above (in this example 'videos')
  7. *
  8. */
  9. add_filter('flo_any_custom_post_option', 'flo_cannes_any_custom_post_option');
  10. function flo_cannes_any_custom_post_option() {
  11. // return array sample:
  12. // array('videos' => 'page=acf-options-11-videos' => 'flo_theme_videos_options_page')
  13. return array(
  14. 'page=acf-options-12-books' => 'books' // in this case 'page=acf-options-12-books' is the URL param from the Books options page: https://i.imgur.com/DyboEnx.jpg
  15. );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement