Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Gisele Gomes

Blog apresentar o post completo

Recommended Posts

Bom dia pessoal!

 

Estou desenvolvendo um site e ele já está 90% concluído. Mas necessito realizar um ajuste que não estou conseguindo.

 

Eu uso uma página estática como Página Inicial e criei uma página separada para o Blog.

 

Quando eu crio uma postagem ao acessar a página Blog está sendo apresentado apenas o resumo tendo que clicar em Read More para visualiza-lo por completo. Mas gostaria que ao acessar a página Blog todos os Posts já fossem apresentado por completo.

 

Enfim, já realizei várias pesquisar e em muitas informam que devo trocar o the_excerpt por the_contente na home.php ou index.php

 

No meu tema que é o Zippy Child eu ñão localizei a home.php apenas o index.php

 

E no index.php não possui essa configuração.

 

Abaixo vou postar o código do meu index.php peço por gentileza que verifiquem e me retornar caso possam me ajudar. Caso também necessitem de mais informações, estou á disposição para transmitir. Pois gostaria muito de finalizar essa pendência. Obrigada!!!

 

index.php

 

<?php

/**

* The main template file.

*

 

*/

 

get_header(); ?>

<?php

$enable_home_page = zippy_options_array('enable_home_page');

if($enable_home_page == 1 && is_front_page() && !is_page()){

zippy_get_slider();

}else{

zippy_get_breadcrumb();

}

?>

<div class="main_content">

<?php

 

if($enable_home_page == 1 && is_front_page() && !is_page()){

get_template_part("content","home");

}

else{

?>

<div class="content_left ">

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

<div class="post_author_timeline">

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

 

get_template_part("content",get_post_format());

 

endwhile;

?>

<div class="clear"></div>

</div><!--post_author_timeline-->

<div class="patt border"><?php if(function_exists("zippy_native_pagenavi")){zippy_native_pagenavi("echo",$wp_query);}?></div>

<?php else : ?>

<?php get_template_part( 'content', 'none' ); ?>

<?php endif; ?>

 

<div class="clear"></div>

</div>

<div class="content_right">

<?php if ( function_exists('dynamic_sidebar')) :

if(is_active_sidebar(4)){

dynamic_sidebar(4);

}

else{

dynamic_sidebar(1) ;

 

}

endif; ?>

</div>

<div class="clear"></div>

</div><!--main_content-->

<?php

}

?>

<div class="main_content"><div class="border-top"></div></div><!--main_content-->

<?php get_footer(); ?>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Buenas.

 

O seu problema está no arquivo content.php. Posta o código dele.

Segue conforme solicitado:

 

<?php

/**

* Posts loop

*

 

*/

$comments = get_comments_number(get_the_ID());

$comment_unit = $comments <= 1?__("Comment","zippy"):__("Comments","zippy");

$comment_str = $comments." ".$comment_unit;

?>

<div class="blog_item">

<div class="post-date"><span><?php echo get_the_time("M");echo " ";echo get_the_time("d"); ?></span></div>

<div class="blog_item_content">

<a href="<?php the_permalink();?>">

<h1 class="post-title"><?php the_title();?></h1></a>

<div class="Directory"><?php _e("By","zippy");?> : <?php echo get_the_author_link();?><span class="text-sep-date">/</span>

<?php _e("Tags","zippy");?> : <?php echo get_the_tag_list('',', ');?><span class="text-sep-date">/</span><?php _e("Category","zippy");?> : <?php the_category(', '); ?><span class="text-sep-date">/</span><a href="<?php the_permalink();?>#comments"><?php echo $comment_str;?></a></div>

<?php

if ( has_post_thumbnail() && ! post_password_required()) {

$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );

if($image[0] !="" ){

$img_url = zippy_new_thumb_resize($image[0],580,276,'',true);

echo "<div class='blog-item1-image'><a href='".get_permalink()."'><img width='580' src='".$img_url."' alt='".get_the_title()."' /></a></div>";

}

 

}

?>

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

<?php the_content();

wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'zippy' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) );

 

echo '<div class="comment-wrapper">';

comments_template();

echo '</div>';

?>

<?php else: // is_single() ?>

<?php the_excerpt();?>

<?php endif;?>

<?php if ( is_search() || is_home()) : ?>

<div class="meta_info">

<div class="alignright"><a href="<?php the_permalink();?>"><?php _e("Read More »","zippy");?></a></div>

<div class="clear"></div>

</div>

 

<?php endif;?>

</div>

</div>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Troque esse trecho:

<?php if ( is_single() ) : ?>
<?php the_content();
wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'zippy' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) );

echo '<div class="comment-wrapper">';
comments_template();
echo '</div>';
?>
<?php else: // is_single() ?>
<?php the_excerpt();?>
<?php endif;?>

Por esse:

<?php the_content();
wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'zippy' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) );

echo '<div class="comment-wrapper">';
comments_template();
echo '</div>';
?>

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.