Forum Replies Created

Viewing 1 replies (of 1 total)
  • If you have php installed on your server (and have wordpress on your server, no their hosting), you can use the below code and call it wordpress.php and save it on your webserver. It will show the images in Firefox

    <?
    ob_start();
    $RSSPAGE= file_get_contents(‘LINK_TO_YOUR_WORDPRESS_RSS_FEED’);
    echo $RSSPAGE;
    $contents=ob_get_contents();
    ob_end_clean();
    $contents=str_replace(“]]></description>”,”,$contents);
    $contents=str_replace(“<content:encoded><![CDATA[“,”,$contents);
    $contents=str_replace(“]]></content:encoded>”,’]]></description>’,$contents);
    echo($contents);
    ?>

Viewing 1 replies (of 1 total)