Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/07/2007, 14:58
finnegard
 
Fecha de Ingreso: julio-2007
Mensajes: 3
Antigüedad: 16 años, 10 meses
Puntos: 0
Información Re: Alguién me Ayudaria, "Fatal error:Call to undefined function get_header()"

bueno aqui envio el codigo del index.php .... alguna observación? estare muy agradecido, cómo dije este error se repite en todos los temas, y las paginas las tengo en el mismo directorio asi, que no entiendo??

Código PHP:
<?php get_header(); ?>

<div id="maintext">

    <?php if (have_posts()) : ?>

        <?php while (have_posts()) : the_post(); ?>
        <div class="postblock">
        <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
        <p class="date"><?php the_time('F jS, Y'?> by <strong><?php the_author() ?></strong></p>


        <?php the_content('Read the rest of this entry &raquo;'); ?>


        <p class="postmetadata">Posted in <?php the_category(', '?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?>  <?php comments_popup_link('No Comments »''1 Comment »''% Comments »'); ?></p>

                <!--
                <?php trackback_rdf(); ?>
                -->
        </div>
        <?php endwhile; ?>

        <p class="navigation">
            <span class="left"><?php posts_nav_link('','','&laquo; Older Entries'?></span> <span class="right"><?php posts_nav_link('','Newer Entries &raquo;',''?></span>
        </p>

    <?php else : ?>

        <h2 class="center">Not Found</h2>
        <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
        <?php include (TEMPLATEPATH "/searchform.php"); ?>

    <?php endif; ?>

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>