Skip to content

Instantly share code, notes, and snippets.

@Spellhammer
Created December 8, 2023 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Spellhammer/9df3d571ecaced17f1e476ebc5c2d2c9 to your computer and use it in GitHub Desktop.
Save Spellhammer/9df3d571ecaced17f1e476ebc5c2d2c9 to your computer and use it in GitHub Desktop.
Filter for adding post types to Oxygen 4.8 Navigator.
add_filter('oxygen_vsb_navigator_post_types', function( $post_types ) {
$post_types = [...$post_types, 'events'];
return $post_types;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment