- 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:
1 | <?php get_header(); ?> |
Include header-top.php:
1 | <?php get_header( 'top' ); ?> |
Include sidebar.php:
1 | <?php get_sidebar(); ?> |
Include sidebar-left.php:
1 | <?php get_sidebar( 'left' ); ?> |
Include footer.php:
1 | <?php get_footer(); ?> |
Include footer-right.php:
1 | <?php get_footer( 'right' ); ?> |
Include searchform.php:
1 | <?php get_search_form(); ?> |
Include template.php:
1 | <?php get_template_part( 'template' ); ?> |
Include template-list.php:
1 | <?php get_template_part( 'template' , 'list' ); ?> |
Include comments.php:
1 | <?php comments_template(); ?> |
Include wide-comments.php:
1 | <?php comments_template( '/wide-comments.php' ); ?> |