网站标题未显示在浏览器标题栏中。
我已经在浏览器中看到了页面源, 并注意到, 标签在重复。这可能是一个探索。我找不到重复。
这是我的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(); ?>>
#1
查看你的源代码, 你有2个文档类型, html, head, body和title标签。你需要弄清楚它们来自何处。可能在<?php get_header();上方有html标记; ?>部分。
是你自己的主题吗?
更新
要弄清楚这是哪里来的, 请停用所有插件。
如果这样可以帮助他们一次又一次打开, 看看是哪一个。
如果那没有帮助。关闭fucntions.php(现在将其重命名)。
如果这样没有帮助, 请给我们你主题中所有(php)文件的列表。
#2
问题是, WordPress试图打印错误或警告消息。但是” WP_DEBUG”在WP_CONFIG.PHP中为假。我只是使define(‘WP_DEBUG’, false);定义(‘WP_DEBUG’, true);
它显示了一些警告消息。
#3
不在页面中显示标题的原因恰恰是这样-具有2个head, title标签和两次关闭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 =
评论前必须登录!
注册