Options for authenticated feeds

Assuming you only want to switch it from excerpts to full content, then you could filter the rss_use_excerpt option based on whatever settings you prefer. Something like this would work: add_filter(‘option_rss_use_excerpt’,’random_function_name_here’); function random_function_name_here($value) { if ( whatever_check_you_want_here() ) { return false; // false = show full content } else { return true; // true = … Read more