Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active December 17, 2018 19:57
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 billerickson/093fe4165a5f184547a20d3ddfc1f431 to your computer and use it in GitHub Desktop.
Save billerickson/093fe4165a5f184547a20d3ddfc1f431 to your computer and use it in GitHub Desktop.
<?php
/**
* Add Genesis CPT Archive Settings to events
* @see https://www.billerickson.net/genesis-archive-settings-for-custom-post-types/
*
*/
function be_event_archive_settings() {
add_post_type_support( 'event', 'genesis-cpt-archives-settings' );
}
add_action( 'init', 'be_event_archive_settings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment