Ú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‘);
\—