View Single Post
Old 02-10-2013, 12:39 AM  
just a punk
So fuckin' bored
 
just a punk's Avatar
 
Industry Role:
Join Date: Jun 2003
Posts: 32,381

WP (freeware) + CyberSEO ($29.95 per license) + the following small script to convert your text dump into the preoperly-formatted RSS feed:

Code:
<?php
if (isset ( $_GET ["dump"] )) {
    $dump = file ( $_GET ["dump"] );
    $time = time ();
    echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
    echo "<rss version=\"2.0\">\n";
    echo "<channel>\n";
    echo "<title>My Feed</title>\n";
    foreach ( $dump as $item ) {
        list ( $url, $title ) = explode ( "|", trim ( $item ) );
        echo "       <item>\n";
        echo "               <title><![CDATA[" . $title . "]]></title>\n";
        echo "               <link><![CDATA[" . $url . "]]></link>\n";
        echo "               <guid><![CDATA[" . $url . "]]></guid>\n";
        echo "               <pubDate>" . date ( "D, d M  Y H:i:s O", $time ) . "</pubDate>\n";
        echo "               <description></description>\n";
        echo "       </item>\n";
        $time -= 86400;
    }
    echo "</channel>\n";
    echo "</rss>\n";
}
?>
The result site may look like this or like that depends on which exactly WP theme you are going to use.
__________________
Obey the Cowgod
just a punk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote