-
-
Save billerickson/cfc0f29f5f9e17bccf99 to your computer and use it in GitHub Desktop.
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
<?php | |
/** | |
* Add theme support for event categories | |
* @author Bill Erickson | |
* @link http://www.billerickson.net/code/be-events-calendar-categories | |
*/ | |
function be_event_theme_support() { | |
add_theme_support( 'be-events-calendar', array( 'event-category' ) ); | |
} | |
add_action( 'after_setup_theme', 'be_event_theme_support' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment