Syndicate Right Bump!
Right Bump now has a feed you can insert into your websites sidebar to syndicate the front page content. It's quite simple, involving one to two lines of code. To view what the syndication feed looks like, check out the demo.
Copy an past the below code which corresponds to your blogging software:
Wordpress/Moveable Type Blogs (for techies; php parsing enabled blogs):
<?php
$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, 'http://syndicate.rightbump.com/frontpage/parsed/');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
// display file
echo $file_contents;
?>
Blogger/Blogsome/Typepad Blogs (for techies; non-php parsing blogs):
<script type="text/JavaScript" src="http://syndicate.rightbump.com/frontpage/javascript/"></script>



