elbalazo
Member
Posted 2 years ago #
Hi, I turned WordPress into a nifty CMS for a project, and I am trying to find a way that I can create <title> tags for my (non blog-post) pages.
I tried using the SEO Title Tags plugin, but it only seems to be useful for posts.
Does anyone have any recommendations?
Try something like:
<title><?php if( is_page() ) { wp_title(':',true,'right');bloginfo('name'); };?></title?
in header.php.
elbalazo
Member
Posted 2 years ago #
Thanks! I'll give it a try.
elbalazo
Member
Posted 2 years ago #
It looks like it just does the page title and blog title.
How could I make a custom field to edit the title tag?