Thanks for your replies.
What I have done is this : added a center widget area, and through a php widget added this code :
PHP Code:
<?php if (is_category('Category A')) { ?>
<p>This is the text to describe category A</p>
<?php } elseif (is_category('Category B')) { ?>
<p>This is the text to describe category B</p>
<?php } else { ?>
<p>This is the text to describe all other categories</p>
<?php } ?>
but it is not automatic and a bit lengthy
I also tried this code :
PHP Code:
<?php
foreach((get_the_category()) as $category) {
echo $category->cat_name . ' ';
}
?>
but this actually displays the names of all categories associated with the latest post on the category page - not what I want to do.
What would I have to modify in the second example to display the name of the category page currently being displayed and not refer to the posts excerpts shown on that page?
Any help much appreciated,
JF