网站标题未显示在浏览器标题栏中。
我在浏览器中看过页面源并注意到标签正在重复。这可能是一个问题。我无法找到重复。
这是我的header.php的代码
<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 7]>
<html id="ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html id="ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<title><?php
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'oscar' ), max( $paged, $page ) );
?></title>
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<?php
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
wp_head();
?>
</head>
<body <?php body_class(); ?>>
答案 0 :(得分:2)
查看源代码,您有2个doctypes
,html
,head,
body
和title
个标记。
你需要弄清楚那些来自哪里。
可能在<?php get_header(); ?>
部分之上有html标签。
这是你自己的主题吗?
<强>更新强>
通过停用所有插件来确定其来源
如果这有助于再一次打开它们,看看哪一个做到了。
如果这没有帮助。关闭fucntions.php
(暂时重命名)
如果这无法帮助我们列出主题中的所有(php)文件。
答案 1 :(得分:1)
问题是,Wordpress试图打印错误或警告信息。但'WP_DEBUG'
中WP_CONFIG.PHP
为假。
我只是define('WP_DEBUG', false);
到define('WP_DEBUG', true);
它显示了一些警告信息。
答案 2 :(得分:0)
不在页面中显示标题的原因正是如此 - 拥有2个头,标题标记,并关闭 head 标记两次。这意味着,某些插件在每个页面中都包含一些内容,或者您在PHP中使用自动预备结束文件。检查“php.ini”配置文件中的这些行:
; Automatically add files before PHP document.
; http://php.net/auto-prepend-file
auto_prepend_file =
; Automatically add files after PHP document.
; http://php.net/auto-append-file
auto_append_file =