A Simple bug fix for a wordpress theme

Status
Not open for further replies.

Jardini

New member
Dec 13, 2007
676
26
0
台北
Rating - 100%
10   0   0
My custom made wordpress theme has a bug, it will not show the post title as the browser title.

Also all in one seo plugin doesn't work with the theme.

Looking for someone to help me fix the issue.

please PM me, thanks
 


have you got the title in your header?

PHP:
<?php wp_title(''); ?>
Should look something like this....
PHP:
<title><?php wp_title(''); ?> <?php bloginfo('name'); ?></title>
Also make sure the below is also in your header
PHP:
<?php wp_head(); ?>
 
  • Like
Reactions: Jardini
I love you very much

have you got the title in your header?

PHP:
<?php wp_title(''); ?>
Should look something like this....
PHP:
<title><?php wp_title(''); ?> <?php bloginfo('name'); ?></title>
Also make sure the below is also in your header
PHP:
<?php wp_head(); ?>
 
Status
Not open for further replies.