Problema con visualización de entradas en tema Duena de WordPress

L

leybre06

Hola a todos!! Soy nueva en el foro
Espero que me podeis ayudar :)

He descargado un tema de wp! En concreto el DUENA. Quiero modificar un poquito a mi gusto! Lo que pasa es que la entrada no se ve completa :(
solo una fraccion de la misma. He buscado en el index de la plantilla (el excerpt) para reemplazarlo por content. pero no lo encuentro.

Alguien me puede hechar una mano con este temita??

dejaré el codigo de la (single.php) Para que podeis hechar un vistazo.

<?php
/**
* The Template for displaying all single posts.
*
* @package duena
*/

get_header(); ?>

<div id="primary" class="span8 <?php echo esc_attr( of_get_option('blog_sidebar_pos') ) ?>">
<div id="content" class="site-content" role="main">

<?php while (have_posts()) : the_post();

// The following determines what the post format is and shows the correct file accordingly
$format = get_post_format();
get_template_part( 'post-formats/'.$format );
if($format == '')
get_template_part( 'post-formats/standard' );
get_template_part( 'post-formats/post-nav' );
get_template_part( 'post-formats/related-posts' );
comments_template('', true);
endwhile; // end of the loop. ?>

</div><!-- #content -->
</div><!-- #primary -->

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




Y el index. por si las moscas :)

<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: Template Hierarchy « WordPress Codex
*
* @package duena
*/

get_header(); ?>
<div id="primary" class="span8 <?php echo esc_attr( of_get_option('blog_sidebar_pos') ) ?>">
<div id="content" class="site-content" role="main">

<?php if (have_posts()) : while (have_posts()) : the_post();

// The following determines what the post format is and shows the correct file accordingly
$format = get_post_format();
get_template_part( 'post-formats/'.$format );

if($format == '')
get_template_part( 'post-formats/standard' );

endwhile;

get_template_part('post-formats/post-nav');

else: ?>

<div class="no-results">
<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'duena' ); ?></p>
<?php get_search_form(); /* outputs the default Wordpress search form */ ?>
</div><!--no-results-->

<?php endif; ?>

</div><!-- #content -->
</div><!-- #primary -->

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




Espero que me podeis ayudar :)

Desde ya muchas gracias
 

adresc

Dseda
Verificación en dos pasos activada
¡Ha verificado su Paypal!
Desde
17 Dic 2011
Mensajes
1.183
busca en esos templates:

post-formats/standard
post-formats/post-nav
...

aunque por la estructura del código me parece que quizá simplemente se pueda configurara desde las opciones del theme, si no modifica, alguno de esos templates que te indico, ahí debe estar, pero el que esté activo igual depende de la configuración
 
Arriba