Make WordPress Core

Changeset 1223 for trunk/wp-rss.php


Ignore:
Timestamp:
05/05/2004 06:32:18 AM (21 years ago)
Author:
saxmatt
Message:

Minor changes to RSS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-rss.php

    r1216 r1223  
    1414<rss version="0.92">
    1515    <channel>
    16         <title><?php bloginfo_rss("name") ?></title>
    17         <link><?php bloginfo_rss("url") ?></link>
    18         <description><?php bloginfo_rss("description") ?></description>
     16        <title><?php bloginfo_rss('name') ?></title>
     17        <link><?php bloginfo_rss('url') ?></link>
     18        <description><?php bloginfo_rss('description') ?></description>
    1919        <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT')); ?></lastBuildDate>
    2020        <docs>http://backend.userland.com/rss092</docs>
     
    3030if (get_settings('rss_use_excerpt')) {
    3131?>
    32             <description><?php the_excerpt_rss(get_settings('rss_excerpt_length'), get_settings('rss_encoded_html')) ?></description>
     32            <description><?php the_excerpt_rss(get_settings('rss_excerpt_length'), 2) ?></description>
    3333<?php
    3434} else { // use content
Note: See TracChangeset for help on using the changeset viewer.