• redantutrecht

    (@redantutrecht)


    If wp replaces the & in your url to an htmlentity the plugin needs to replace it back to an actual ampersand instead of & amp ;

    `require_once(ABSPATH.WPINC.’/rss.php’);
    // add below:
    $feed = str_replace(‘&’, ‘&’, $feed);
    $feed = str_replace(‘&’, ‘&’, $feed);`

    http://wordpress.org/extend/plugins/rss-shortcode/

Viewing 1 replies (of 1 total)
  • Thread Starter redantutrecht

    (@redantutrecht)

    require_once(ABSPATH.WPINC.’/rss.php’);

    $feed = str_replace(‘_PUT AN AMP INSTEAD OF THIS HERE_#038;’, ‘&’, $feed);
    $feed = str_replace(‘_PUT AN AMP INSTEAD OF THIS HERE_amp;’, ‘&’, $feed);

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: RSS Shortcode] fix for & amp ; replace’ is closed to new replies.