How did I enable atom feeds in a fresh WP3 install?

I’ve just install WordPress 3, and I can’t figure out how to put an atom link in the sidebar, under (or otherwise near) the RSS links. I looked at sidebar.php, but it simply references a meta ‘widget’, and I can’t figure out how to modify or configure this widget (or any widget for that matter). Can somebody guide me as to how to enable atom feeds?

Related posts

Leave a Reply

1 comment

  1. You can use the wp_meta hook:

    function extend_meta() {
        echo '<li><a href="' . get_bloginfo('atom_url') . '" title="' . esc_attr( __( 'Syndicate this site using Atom' ) ) . '">' . __('Entries Atom Feed') . '</a></li>';
    }
    
    add_action( 'wp_meta', 'extend_meta' );