Problema con plantilla al usar LEER MAS en proyecto de turismo

  • Autor Autor eljevito
  • Fecha de inicio Fecha de inicio
E

eljevito

Mi
Redactor
Verificado por Whatsapp
¡Ha verificado su Paypal!
Tengo un nuevo proyecto relacionado con el tema de turismo, pero tengo un problema con la plantilla, ya que cuando le pongo LEER MAS (MORE) para que lo otro se vea cuando le den clic hay...

Cuando publico la entrada NOC donde dice LEER MAS, pero cuando le das clic al titulo del post se COMPLETO el post, pero en el index no se me ve el LEER MAS!!

Mi web: Enlace eliminado

Espero que me ayuden en eso, a los expertos de WP que me den la mano!

saludos y gracias
 
Puedes pegar el código fuente de index.php de tu theme para ver que pasa??
 
Comoa si hermano, el codigo que tiene INDEX? K LO PEGUE haber k tiene_

Claro el código de index.php parta ver que esta mal. Pues no creo que haya adivinos en el foro para adivinar donde puede estar el problema.
 
PHP:
<?php get_header(); ?>
<?php include (TEMPLATEPATH . '/adsense.php'); ?>
<div class="entry">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>

<div class="post" id="post-<?php the_ID(); ?>">
<!-- google_ad_section_start -->
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="datex">Escrito Por: <?php the_author(); ?> en  <?php the_category(', ') ?> | <?php the_time('j \d\e F \d\e\l Y\ ') ?> <?php edit_post_link('Editar'); ?></p>

<div class="spacer"></div>
<?php the_content(''); ?>
<!-- google_ad_section_end -->

</div><!--Termina Post -->

		<?php endwhile; ?>

		<div class="navigation">
			<div class="alignleft"><?php next_posts_link(' <p class="large blue awesome"> &laquo; Anteriores</p>') ?></div>
			<div class="alignright"><?php previous_posts_link('<p class="large blue awesome">Recientes &raquo;</p>') ?></div>
		</div>
		
	<?php else : ?>
	<?php endif; ?>

</div><!--Termina Entradas -->
    
<?php get_sidebar(); ?>
<br clear="all" />
<?php get_footer(); ?>

Hay esta el codigo hermano!
 
PHP:
<?php get_header(); ?>
<?php include (TEMPLATEPATH . '/adsense.php'); ?>
<div class="entry">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>

<div class="post" id="post-<?php the_ID(); ?>">
<!-- google_ad_section_start -->
<h2><a rel="nofollow" href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="datex">Escrito Por: <?php the_author(); ?> en  <?php the_category(', ') ?> | <?php the_time('j \d\e F \d\e\l Y\ ') ?> <?php edit_post_link('Editar'); ?></p>

<div class="spacer"></div>
<?php the_content(''); ?>
<!-- google_ad_section_end -->

</div><!--Termina Post -->

		<?php endwhile; ?>

		<div class="navigation">
			<div class="alignleft"><?php next_posts_link(' <p class="large blue awesome"> &laquo; Anteriores</p>') ?></div>
			<div class="alignright"><?php previous_posts_link('<p class="large blue awesome">Recientes &raquo;</p>') ?></div>
		</div>
		
	<?php else : ?>
	<?php endif; ?>

</div><!--Termina Entradas -->
    
<?php get_sidebar(); ?>
<br clear="all" />
<?php get_footer(); ?>

Hay esta el codigo hermano!

Intenta remplazar esta linea
Insertar CODE, HTML o PHP:
<?php the_content(''); ?>
por esta
Insertar CODE, HTML o PHP:
<?php the_content('Leer mas...'); ?>

Me dices si funciona.
 
Si funciono TODO BIEN!! gracias HERMANO!! de verdad


Saludos!:shakehands:
 
Atrás
Arriba