array_merge():第93行中的参数#2不是C:\ xampp \ htdocs \ wordpress \ wp-includes \ nav-menu.php中的数组

时间:2015-09-14 13:12:36

标签: php css wordpress

我的wordpress有问题。我已经下载了wordpress 4.3并在xampp上运行它。 我试图在wordpress中创建自己的主题,所以我在wordpress \ wp-content \ themes中创建了一个文件夹。

我制作了我的style.css,页眉,页脚,index.php,但无论何时我运行它,我都有这个错误。 array_merge():参数#2不是第93行的C:\ xampp \ htdocs \ wordpress \ wp-includes \ nav-menu.php中的数组

这是我的header.php

<!DOCTYPE html>
<html>
    <head>

        <title> 
            <?php
                wp_title('|', 'true', 'right'); // title of the page
                bloginfo('name');  // name of the blog

            ?>
        </title>
        <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url');?>/style.css">
        <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url');?>/bootstrap.css">

        <?php wp_head(); //this is use for plugins ?>
    </head>
    <body>
        <div class="container">
            <div class="five columns clearfix">
                <a href="<?php echo get_option ('home');?>"><img src="<?php bloginfo('template_url');?>/img/globelogo.jpeg" title="bloginfo('title');"></a>         
            </div>
        </div>
    </body>
</html> 

这是我的index.php

<?php get_header(); ?>


<?php get_sidebar(); ?>
<?php get_footer(); ?>

似乎是什么问题?

0 个答案:

没有答案