我的免费网站托管网站致命错误?

时间:2013-11-03 21:35:04

标签: php wordpress

  

致命错误:在第1行的/home/a2260510/public_html/index.php中调用未定义函数get_header()

下面的错误代码

当我刷新浏览器时,我看到了错误。

<?php get_header(); ?>
        <div class="fix main_body_area ">

            <div class="fix main_feature floatleft">
                    <div class="fix heading_area">
    <div class=" heading floatleft">
    <h4><img src="<?php echo get_template_directory_uri();?>/images/post_red_img.png"><div class="head_pan">Gruesome video shows Syria brutality</div></h4>
                        </div>

                        <div class=" heading_2 floatright">
                                <h4><img src="<?php echo get_template_directory_uri();?>/images/gray.png" alt="gray"><div class="fix head_span"><p><marquee>As crackdowns against anti-government protesters continue acrosss</marquee></p></div></h4>enter code here
                    </div>
                </div>

                <?php get_template_part('slider');?>

                <div class="fix feature_area_images">
                    <?php get_template_part('image_widgets');?>
                </div>

                <div class="fix news_post_area">    

                     <div class="fix head_news">
                        <?php get_template_part('post_loop');?>
                    </div>


            </div>
                    <?php get_template_part('sidebar');?>           

        </div>  




                <?php get_footer();?>
    </div>

1 个答案:

答案 0 :(得分:2)

您使用wordpress主题作为独立的网络应用。
你要做的是:

  1. 转到http://wordpress.org/download/并下载最新版本。
  2. 上传在public_html文件夹中下载的wordpress zip的内容。
  3. 现在你可以把你的文件(显示致命错误的文件)放在wp-contents / themes文件夹中。
  4. 转到您的网站网址,然后安装wordpress(这里有帮助:http://codex.wordpress.org/Installing_WordPress
  5. 它应该有用。