1 normal Jun 17, 2005 15:26
3 normal Jun 17, 2005 17:11
Yes, I have that very same set of link tags in the head tag. Is there something there that needs to be altered to get the "auto-discover" function I want?
- David
4 john Jun 17, 2005 17:28
Well in Firefox and Opera both of your blogs generate the RSS feed icon in the browsero it seems to be working OK from what I can see.
5 topanga Jun 17, 2005 18:14
<a href="<?php $Blog->disp( 'rss_url', 'raw' ) ?>"><img src="../../img/xml.gif" alt="XML" width="36" height="14" class="middle" /></a>
or more extensive :
<ul>
<li>
RSS 0.92:
<a href="<?php $Blog->disp( 'rss_url', 'raw' ) ?>"><?php echo T_('Posts') ?></a>,
<a href="<?php $Blog->disp( 'comments_rss_url', 'raw' ) ?>"><?php echo T_('Comments') ?></a>
</li>
<li>
RSS 1.0:
<a href="<?php $Blog->disp( 'rdf_url', 'raw' ) ?>"><?php echo T_('Posts') ?></a>,
<a href="<?php $Blog->disp( 'comments_rdf_url', 'raw' ) ?>"><?php echo T_('Comments') ?></a>
</li>
<li>
RSS 2.0:
<a href="<?php $Blog->disp( 'rss2_url', 'raw' ) ?>"><?php echo T_('Posts') ?></a>,
<a href="<?php $Blog->disp( 'comments_rss2_url', 'raw' ) ?>"><?php echo T_('Comments') ?></a>
</li>
<li>
Atom:
<a href="<?php $Blog->disp( 'atom_url', 'raw' ) ?>"><?php echo T_('Posts') ?></a>,
<a href="<?php $Blog->disp( 'comments_atom_url', 'raw' ) ?>"><?php echo T_('Comments') ?></a>
</li>
</ul>
That's just done with link tags, afaik.
Don't you have something like this in your skin's _main.php file, up in the HEAD tag?