Themes

WordPress default themes demo:

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'); ?>

Leave a Comment