Wordpress PHP Snippets for templates
Here are some very usefull informations for those who use Wordpress as CMS
PHP Snippets for templates – usefull functions
<?php the_content(); ?>
Content of the posts
<?php if(have_posts()): ?>
Checks if there are posts
<?php while(have_posts()) : the_post(); ?>
Shows posts if posts are available
<?php endwhile; ?>
Closes the ‘while’ PHP function
<?php endif; ?>
Closes the ‘if’ PHP function
<?php get_header(); ?>
Loads the header.php [...]