Código:
ahora me voy al require(../../../wp-blog-header.php) y lo dejo require(./wp-blog-header.php) pues ahora me funciona los demas botones como el de contacto pero no el de los post de inicio, me sale en blanco el principal y al pulsar de nuevo me expulsa el error anteriorWarning: require(../../../wp-blog-header.php): failed to open stream: No such file or directory in C:\xampp\htdocs\wordpress\wp-content\themes\senderos\page.php on line 5 Fatal error: require(): Failed opening required '../../../wp-blog-header.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\wordpress\wp-content\themes\senderos\page.php on line 5
os muestro mi page.php entero :
Código PHP:
<?php
define('WP_USE_THEMES', false);
/** Loads the WordPress Environment and Template */
require('../../../wp-blog-header.php');
?>
<?php get_header(); ?>
<div id="contenido">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="entrada">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<p class="postmetadata">
Por <?php the_author(', '); ?> el <?php the_time('F jS, Y'); ?> en <?php the_category(', ') ?> | <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
</p>
<div class="imagen-post-thumbnail">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
</div>
<?php //include ('C:\xampp\htdocs\wordpress\wp-includes\meta.php' ); ?>
<div class="entry">
<?php the_excerpt(); ?>
<a href="<?php echo get_permalink(); ?>"> Leer mas...</a>
</div>
</div>
<?php endwhile; ?>
<?php //include ('C:\xampp\htdocs\wordpress\wp-includes\nav.php' ); ?>
<?php else : ?>
<h2>Not Found</h2>
<?php endif; ?>
</div>
<?php get_sidebar('primary'); ?>
<?php get_sidebar('secondary'); ?>
<?php get_footer(); ?>
gracias de antemano.