oh yh sorry…i didn’t see that one…thanx 🙂
am not very clear on what you’re trying to do, but i’ll have a go
seems to me that you’re trying to add the “.html” at the end of the link name
Go to Settings > Permalinks and add the .html after the selected permalink
e.g.
instead of
/%year%/%monthnum%/%day%/%postname%/
have
/%year%/%monthnum%/%day%/%postname%.html/
to have http://localhost/wordpress/2009/02/23/sample-post.html/
Hope this helped 🙂
instead of opening the <?php and closing ?> and then opening another one and closing for each line, why not have one <?php for all the code:
<?php
if (is_category('Category A'))
{
<p>This is the text to describe category A</p>
}
elseif (is_category('Category B'))
{
<p>This is the text to describe category B</p>
<?php
}
else
{
<p>This is some generic text to describe all other category pages,
I could be left blank</p>
}
?>
Hope this helped 🙂