how and where do you add
this code i know its either in the side bar php or the css tx
<a href="http://validator.w3.org/check/referer"
title="This page validates as XHTML 1.0 Transitional"><img
src="http://example.com/graphics/icons/valid-xhtml10.gif"
alt="Valid XHTML 1.0!" height="31" width="88" />
To replace the link with a graphic link, like the "Valid XHTML" icon, copy the icon to your site and try the following example, changing the file name and folders to match your site:
that is the meta code in your theme's sidebar.php
cool ok so so where do i put it in my theme code ?
your theme's sidebar.php where exactly or doesnt it matter ?
cheers samboll
look for this bit - replace the appropriate code with yours
back up the file 1st and you'll be fine
<li><h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</li>