Files
sportspress/hooks.php
2013-07-24 19:09:02 +10:00

8 lines
224 B
PHP

<?php
// Flush rewrite rules on activation to make sure permalinks work properly
function sp_rewrite_flush() {
sp_team_cpt_init();
flush_rewrite_rules();
}
register_activation_hook( __FILE__, 'sp_rewrite_flush' );
?>