Changeset 666

Show
Ignore:
Timestamp:
12/30/03 12:05:25 (5 years ago)
Author:
saxmatt
Message:

Initial Atom syndication and autodiscovery support.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/index.php

    r665 r666  
    2121    <link rel="alternate" type="text/xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> 
    2222    <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> 
     23    <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> 
    2324     
    2425    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> 
  • trunk/wp-includes/template-functions.php

    r665 r666  
    5656            $output = $siteurl.'/wp-rss2.php'; 
    5757            break; 
     58        case "atom_url": 
     59            $output = $siteurl.'/wp-atom.php'; 
     60            break;       
    5861        case "comments_rss2_url": 
    5962            $output = $siteurl.'/wp-commentsrss2.php';