- Galaxia
- activetab WordPress theme
- Child theme
- WordPress loop
- WordPress custom loop with pagination
- Redirect to first subpage
- WordPress sample content
- WordPress starter theme
- WordPress theme development
- WordPress template hierarchy
WordPress default themes demo:
- Twenty Twenty Four theme demo - 2024
- Twenty Twenty Three theme demo - 2023
- Twenty Twenty Two theme demo - 2022
- Twenty Twenty One theme demo - 2021
- Twenty Twenty theme demo - 2020
- Twenty Nineteen theme demo - 2019
- Twenty Eighteen theme demo - 2018
- Twenty Seventeen theme demo - 2017
- Twenty Sixteen theme demo - 2016
- Twenty Fifteen theme demo - 2015
- Twenty Fourteen theme demo - 2014
- Twenty Thirteen theme demo - 2013
- Twenty Twelve theme demo - 2012
- Twenty Eleven theme demo - 2011
- Twenty Ten theme demo - 2010
WordPress Automattic Themes
Include header.php:
<?php get_header(); ?>
Include header-top.php:
<?php get_header('top'); ?>
Include sidebar.php:
<?php get_sidebar(); ?>
Include sidebar-left.php:
<?php get_sidebar('left'); ?>
Include footer.php:
<?php get_footer(); ?>
Include footer-right.php:
<?php get_footer('right'); ?>
Include searchform.php:
<?php get_search_form(); ?>
Include template.php:
<?php get_template_part('template'); ?>
Include template-list.php:
<?php get_template_part('template','list'); ?>
Include comments.php:
<?php comments_template(); ?>
Include wide-comments.php:
<?php comments_template('/wide-comments.php'); ?>