Created
December 19, 2022 15:43
-
-
Save thierrypigot/e0c69645721cda1cfc53d9b4873c2460 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
<?php if ( have_posts() ) : ?> | |
<?php while (have_posts() ) : the_post(); ?> | |
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> | |
<?php the_content(); ?> | |
<?php endwhile; ?> | |
<?php endif; ?> | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment