Jump to content

Content Repeating Twice. Why ?.


shihabmalayil

Recommended Posts

These are code of my wordpress template page & post page.it's repeating twice.is it looping same code?.

please help me to correct the code.

 

(template page)

<?php /*?>

 

<?php if(have_posts()):

while(have_posts()): the_post(); ?>

<h1><?php the_title();?></h1>

<p><?php the_content();?></p>

<?php endwhile;

else :

endif;?>

 

<?php */?>

 

(WP Page)

 

<?php */?>

 

<?php query_posts('cat=4&showposts=8'); ?>

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

<a>"><?php the_title()?></a>

<?php the_excerpt();?>

<?php endwhile; endif; ?>

 

<?php */?>

Link to comment
https://forums.phpfreaks.com/topic/269857-content-repeating-twice-why/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.