Hi BJ
Noticed your title code for word press an dam keen to use it.
Can you tell me in simple english what this does?
I am keen to improve my blogs because I am gettng several supplental pages, which I dont want
Thanks
Art
<title>
<?php if (is_home () ) {
bloginfo('name');
} elseif ( is_category() ) {
bloginfo('name'); echo " - "; single_cat_title();
} elseif (is_single() || is_page() ) {
single_post_title();
} elseif (is_search() ) {
bloginfo('name'); echo " search results: "; echo wp_specialchars($s);
} else { wp_title('',true); }
?>
</title>
|