Skip to content

Instantly share code, notes, and snippets.

@pelagisk
Created August 8, 2012 11:52
Show Gist options
  • Select an option

  • Save pelagisk/3294492 to your computer and use it in GitHub Desktop.

Select an option

Save pelagisk/3294492 to your computer and use it in GitHub Desktop.
Exempel 1 The Loop
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment