|
Hey I'm trying to edit the php code so I can input more information about my site title. Here's my code. I not sure what part of it to change. Any help?
In my header php. file I have this code.
<?php echo ($title = wp_title('–', false, 'right')) ? $title : ''; ?><?php echo ($description = get_bloginfo('description')) ? $description : bloginfo('name'); ?>
</title>
What part of this code do I change to display a proper site title for when people google search my site? Thanks.
|