Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@vladimirlukyanov
Created October 20, 2015 02:55
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 vladimirlukyanov/58545f960a3f340700ea to your computer and use it in GitHub Desktop.
Save vladimirlukyanov/58545f960a3f340700ea to your computer and use it in GitHub Desktop.
Custom RSS for WordPress
<?php
add_action( 'after_setup_theme', 'rss_template' );
/**
* Register custom RSS template.
*/
function rss_template() {
add_feed( 'media', 'custom_rss' );
}
/**
* Custom RSS template callback.
*/
function custom_rss() {
get_template_part('partials/feed', 'attachments');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment