is $single or the_title depreciated in 1.5?
-
I have everything working per my upgrade to 1.5 with exception of my titles. Here is the code I use to determine them. Currently, when you access a single entry, there article name is not within the title any more. Thus my question, is $single or the_title depreciated in 1.5, or am I missing something?
<?php if ($single) { ?>
<title>Webpage of Amory ◊ <?php the_title(); ?></title>
<?php } elseif ($cat) { ?>
<title>Webpage of Amory ◊ <?php single_cat_title('', display); ?></title>
<?php } else { ?>
<title>Webpage of Amory ◊ Blog</title>
<?php } ?>
I did google around and found nothing in regards to this specifically
Thanks for any help
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘is $single or the_title depreciated in 1.5?’ is closed to new replies.