转换为WordPress时网站大小减少

时间:2012-01-27 06:07:52

标签: html wordpress web

我正在将一个HTML网站转换为WordPress,并且已经完成了。现在似乎总尺寸减小了,但单位是正确的(与原始HTML相同,即980px宽度等)。

请帮助我。

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title><?php
    /*
     * Print the <title> tag based on what is being viewed.
     */
    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', 'twentyten' ), max( $paged, $page ) );

    ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
</head>

2 个答案:

答案 0 :(得分:0)

再次检查您的样式。可能是其他款式可能与宽度相矛盾。能否请您提供更多信息?

答案 1 :(得分:0)

是的,更多信息会有所帮助。好的机会很好WP可以链接到你不知道的另一个样式表。你在使用主题吗?它可能有它自己的样式表,或者另一个插件正在添加它自己的样式。