Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created December 12, 2016 15:45
Show Gist options
  • Save Farmatique/44190da895386c23b9deb5a3df6fcbc2 to your computer and use it in GitHub Desktop.
Save Farmatique/44190da895386c23b9deb5a3df6fcbc2 to your computer and use it in GitHub Desktop.
Wordpress: insert text from post or page
<?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