Skip to content

Instantly share code, notes, and snippets.

@trishasalas
Created March 27, 2014 20:40
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 trishasalas/9818135 to your computer and use it in GitHub Desktop.
Save trishasalas/9818135 to your computer and use it in GitHub Desktop.
Create a Clickable RSS Link for a bbPress Topic
// Make an RSS Feed Link for a bbPress Topic
// First Create Your Function
function bbpress_rss() {
$url = "http" . (($_SERVER['SERVER_PORT']==443) ? "s://" : "://") . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
echo ' <a href="' . $url . 'feed">Subscribe via RSS</a>';
}
// Then Echo the Function
<?php echo bbpress_rss();?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment