Hi there, Anyone uses this plugin? It's great... but still I have a problem with titles. Right now, on all my pages (posts) the title is the same as on the homepage. Of course, I want the pages (posts) have different titles each (like, the title would be POST TITLE - BLOG TITLE). How can I set that up? I tried everything but no luck. Thanks, dmi
This is what I did on my blog : Modify the header like this: (you may want to keep a backup first)...in your wp-admin -> theme editor ->header <title><?php if (is_home () ) { bloginfo(‘name’); } elseif ( is_category() ) { single_cat_title(); echo ' - ' ; bloginfo(‘name’); } elseif (is_single() ) { single_post_title();} elseif (is_page() ) { single_post_title();} else { wp_title(‘’,true); } ?></title>
If you click rewrite titles, it will show the title of the post first as your page title. It will not change anything in the URL though which is what I was worried about. You can see how it looks in my That Blozzz Blog.
I click on Rewrite titles but nothing happens. Everything remains the same. Do I have to do anything besides that?
No it worked as soon as I clicked it. Try cleaning your browser cache to make sure it did not change. Otherwise, it may be blocked by something in the template code.
you may have to make your theme files writable. You need to chmodd the files (change permissions) from 664 to 666
Arwen54, could you provide some details on how to do that? My pages look like: ....nts.info/?p=20, while yours show up properly: ........day-kiss-me-a-free-xh..... OP, thanks for posting the question, it was on my to do list.
What I have been trying to find is a way to use the title of the latest blog post as the title of the home page. Any suggestions on how I might accomplish that?