Make WordPress Core

Changeset 3140


Ignore:
Timestamp:
11/17/2005 11:17:06 PM (19 years ago)
Author:
ryan
Message:

Filter on the_content_rss. Props Kafkaesqui. fixes #1685

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/feed-functions.php

    r2589 r3140  
    1919function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) {
    2020    $content = get_the_content($more_link_text, $stripteaser, $more_file);
    21     $content = apply_filters('the_content', $content);
     21    $content = apply_filters('the_content_rss', $content);
    2222    if ($cut && !$encode_html) {
    2323        $encode_html = 2;
Note: See TracChangeset for help on using the changeset viewer.