How to append site name to end of each page title?
-
I want to append the site name to the end of each page title? Unfortunately the below ends up with the site name and the title generated by
wp_title
to be merged together with no space.wp_title('|') . bloginfo( 'name' )
Is there anyway to add a space in there / functions that RETURN the data instead of echo it so I can do something like:
wp_title('|') . ' | ' . bloginfo( 'name' )
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to append site name to end of each page title?’ is closed to new replies.