jimboobrien
9/20/2017 - 11:32 PM

WordPress shortcode allows you to create content that is visible only in your RSS feeds.

WordPress shortcode allows you to create content that is visible only in your RSS feeds.

<?php

/**
 * WordPress shortcode allows you to create content that is visible only in your RSS feeds.
 *
 * Example: [feedonly]Dear RSS readers...[/feedonly]
 */
function feedonly_shortcode( $atts, $content = null) {
    if (!is_feed()) return "";
    return $content;
}
add_shortcode('feedonly', 'feedonly_shortcode');