Word Press (Posts and Content)
<?php
if(have_posts()) :
while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php endwhile;
else :
echo '<p> No content found</p>';
endif;
?>
0 comments :
Post a Comment