• Hello! Really love your plugin, looks great and has great functionality. Hoping you could help with one thing…we noticed that in the meta data, you guys are able to show author and date published, but not the source website…this is useful for us because we use our RSS feed to aggregate industry news, and knowing the source is important. The source is visible from the RSS XML: http://screencast.com/t/Zmpth6fi

    Is there any modification I can do to the plugin to make that show up? You can also email me for admin rights. kevin@loftopia.com

    https://wordpress.org/plugins/slidewizard/

Viewing 1 replies (of 1 total)
  • hi kevinattheloft,

    did you mean by displaying your feed URL at the slider?

    it is simple. you can edit a file named ‘template.php’ (there are a lot of template for a different purpose. template.php used to displaying RSS feed and your post).

    you can find out this file at directory: slidewizard > themes > default

    at my modification, i would place it after the content. You can put this code before the close layer of class ‘slide-description’.

    source:
    		<?php
    		$gfeed = $slidewizard['options']['rss_feed_url'];
    		if ($gfeed != '') {
    			echo $gfeed;
    		}
    		?>

    using a conditional to make sure if the source only displayed when you are displaying a feed gallery

Viewing 1 replies (of 1 total)

The topic ‘Adding RSS source to RSS feed’ is closed to new replies.