Free, Open Source Content Management System
Page
Post
Post Page: List of posts
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_title();
the_content();
} // end while
} // end if
?>
The Loop can be limited to displaying only
certain posts, for example those files in specific
categories or with certain tags.
As explained at codex.wordpress.org, a Child Theme “inherits the functionality of it’s parent”. They are the best way to modify an existing (parent) theme. You can alter CSS rules an create alternative template pages, without modifying the parent theme files. Any new style
or page in the Child overrides that functionality in the Parent.
Reasons for using a child theme: