The WP-RSS-Import plugin lets you include an RSS feed into the text of one of your posts or pages. The plugin is highly configurable, and you can use it in your sidebar as well. RSS-Import provides an easy to use shortcode interface that accepts parameters to control how your feed is displayed.
The following parameters are available:
display
– How many items, Default is5
feedurl
– Feed-Adress, Default ishttp://bueltge.de/feed/
before_desc
– string before description, Default isempty
displaydescriptions
– (bool) true or false for display description of the item, Default isfalse
after_desc
– string after description, Default isempty
; you can use the follow strings for custom html%title%
for title of entry and%href%
for link of entryhtml
– (bool) display description include HTML-tags, Default isfalse
truncatedescchar
– truncate description, number of chars, Default is200
, set the value to empty''
for non truncatetruncatedescstring
– string after truncate description, Default is...
truncatetitlechar
– (int) truncate title, number of chars, Default isempty
, set a integer50
to the value for truncatetruncatetitlestring
– string after truncate title, Default is' ... '
before_date
– string before date, Default is<small>
date
– (bool) return the date of the item, Default isfalse
after_date
– string after the date, Default is</small>
date_format
– your format for the date, leave empty for use format of your WordPress installation, alternativ give the php date string, Example:F j, Y
; see also doku in Codexbefore_creator
– string before creator of the item, Default is<small>
creator
– (bool) return the creator of th item, Default isfalse
after_creator
– string after creator of the item, Default is</small>
start_items
– string before all items, Default is<ul>
end_items
– string after all items, Default is</ul>
start_item
– string before the item, Default is<li>
end_item
– string after the items, Default is</li>
target
– string with the target-attribut, Default isempty
; useblank
,self
,parent
,top
rel
– string with the rel-attribut, Default isempty
, use string,nofollow
,follow
desc4title
– Use description for the title-attribut on the title-link, Default isfalse
charsetscan
– Scan for charset-type, load slowly; use this for problems with strings on the return content, Default isfalse
debug
– activate debug-mode, echo the array of Magpie-Object; Default isfalse
, Use only for debug purposebefore_noitems
– HTML or string before message, when the feed is empty, Default is<p>
noitems
– Message, when the feed is empty, Default isNo items, feed is empty.
after_noitems
– HTML or string before message, when the feed is empty, Default is</p>
before_error
– HTML or string before message, when the feed have an error, Default is<p>
error
– Errormessage, Default isError: Feed has a error or is not valid
after_error
– HTML or string before message, when the feed have an error, Default is</p>
paging
– Pagination on, setTRUE
, Default isFALSE
prev_paging_link
– Linkname for previous page, Default is« Previous
next_paging_link
– Linkname for next page, Default isNext »
prev_paging_title
– Title for the link of previous page, Default ismore items
next_paging_title
– Title for the link of next page, Default ismore items
use_simplepie
– Use the class SimplePie for parse the feed; SimplePie is include with WordPress 2.8 and can parse RSS and ATOM-Feeds, Default isfalse
view
– echo or return the content of the functionRSSImport
, Default istrue
; Shortcode Default isfalse
You don’t need to worry about all this, but it is available. Simple use cases only require a couple parameters. See the image on the right for a simple shortcode implementation. In this one I want to see at most 10 posts, I want to see some of their content (900 characters), and the output will be html. This is probably sufficient for most uses, but there are many other configurations possible.