You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
function add_shows_feed() {
|
|
add_feed( 'shows', 'render_shows_feed' );
|
|
}
|
|
add_action( 'init', 'add_shows_feed' );
|
|
|
|
function render_shows_feed() {
|
|
load_template(dirname(__FILE__)."/../feeds/radiomanifest-shows.php" );
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|