Changeset 1358 for trunk/wp-rss.php
- Timestamp:
- 05/24/2004 06:24:12 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-rss.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-rss.php
r1337 r1358 1 <?php /* These first lines are the first part of a CafeLog template.2 In every template you do, you got to copy them before the CafeLog 'loop' */ 3 if (! $feed) {4 $blog = 1; // enter your blog's ID1 <?php 2 3 if (!isset($feed) || !$feed) { 4 $blog = 1; 5 5 $doing_rss = 1; 6 6 require('wp-blog-header.php'); … … 8 8 9 9 header('Content-type: text/xml', true); 10 $more = 1; 10 11 11 12 ?> … … 24 25 <title><?php the_title_rss() ?></title> 25 26 <?php 26 // we might use this in the future, but not now, that's why it's commented in PHP27 // so that it doesn't appear at all in the RSS28 // echo "<category>"; the_category_unicode(); echo "</category>";29 $more = 1;30 27 if (get_settings('rss_use_excerpt')) { 31 28 ?>
Note: See TracChangeset
for help on using the changeset viewer.