RSS agregátor

**FeedWordPress**
„https://cs.wordpress.org/plugins/feedwordpress/“:https://cs.wordpress.org/plugins/feedwordpress/

FeedWordPress is an Atom/RSS aggregator for WordPress. It syndicates content from feeds that you choose into your WordPress weblog; the content it syndicates appears as a series of special posts in your WordPress posts database.

Alternativy:

**WP RSS Aggregator**
„https://wordpress.org/plugins/wp-rss-aggregator/“:https://wordpress.org/plugins/wp-rss-aggregator/

Plugin for easily importing, merging and displaying RSS and Atom feeds on your WordPress site.

**MyCurator Content Curation**
„https://wordpress.org/plugins/mycurator/“:https://wordpress.org/plugins/mycurator/

Combines content aggregation and curation. Content is delivered via RSS feeds, and you can curate articles from those or find others manually. When you choose an article, MyCurator will pre-fill a post with some of its info, enabling you to edit.

**WPeMatico**
„https://wordpress.org/plugins/wpematico/“:https://wordpress.org/plugins/wpematico/

A very easy to use autoblogging plugin. Organized into campaigns, it publishes your posts automatically from the RSS/Atom feeds of your choice.

**RSS Post Importer**
„https://wordpress.org/plugins/rss-post-importer/“:https://wordpress.org/plugins/rss-post-importer/

Plugin for Syndicating, Importing, Curating, Merging and Displaying Full Text RSS and Atom feeds on your WordPress Blog.

Úprava RSS kanálu pomocí hooku

„Action hooks and filter hooks »“:http://codex.wordpress.org/Plugin_API

„Vysvětlení a příklady »“:http://wpcandy.com/teaches/how-to-use-wordpress-hooks/

„All plugin hooks in WordPress 3.5 »“:http://adambrown.info/p/wp_hooks/version/3.5

/—code php
###################################################################################
# tento hook prida do RSS thumbnail, odstrani iframe a urizne obsah za tagem „more“
###################################################################################

function improveRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = “ . get_the_post_thumbnail( $post->ID, ‚rss-thumbnail‘, array( ‚style‘ => ‚margin:0; border: 10px solid #202020‘ ) ) . “ . $content;
}

$content = preg_replace( ‚//is‘, “, $content );

$teaser = preg_split( ‚/<\/span>/‘, $content );
$readmore = ‚Více na webu »‚;
$content = $teaser[0].$readmore;
return $content;
}

add_filter(‚the_excerpt_rss‘, ‚improveRSS‘);
add_filter(‚the_content_feed‘, ‚improveRSS‘);
\—

Zobrazení externích RSS kanálů

**Silencesoft RSS Reader**
„http://wordpress.org/extend/plugins/external-rss-reader/“:http://wordpress.org/extend/plugins/external-rss-reader/

This is a plugin that allows read some external rss feeds and show it on a page or in a widget. Sites can be categorized and you can add an image or use a gravatar.

Personalizace odběru RSS kanálu

Pro pohodlné čtení nových článků na internetu můžete používat RSS čtečky. S nimi se nemusíte proklikávat obsáhlým seznamem stránek, abyste se podívali, co je nového. Můžete tak pohodlně číst různé články, aniž byste nad jejich hledáním ztráceli příliš mnoho času. Dnes už mohou jejich funkci částečně nahradit sociální sítě jako Google plus nebo Facebook, ale […]