Created
December 12, 2016 15:45
-
-
Save Farmatique/44190da895386c23b9deb5a3df6fcbc2 to your computer and use it in GitHub Desktop.
Wordpress: insert text from post or page
This file contains hidden or 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 | |
while( have_posts() ) : the_post(); | |
echo the_content(); | |
endwhile; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment