Extra spaces when echoing wp_title for body tag id
-
Anyone want to take a guess at why, when I use this the below code to generate a body tag with the current page as the id (to have the current page menu item highlighted with CSS):
<body id="<?php echo wp_title(''); ?>">
I get this in the source, with the extra spaces in front of the title of the page:
<body id=" Home">
I think the extra spaces are not allowing my CSS to work.
(I’m not using the wp_list_pages in my header as I have some custom php to generate page URLs, so I using current_page in my CSS won’t work.
Thanks, Mark
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Extra spaces when echoing wp_title for body tag id’ is closed to new replies.