Advertisement
grappler

home.php w/ only widgets

Jan 28th, 2013
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.78 KB | None | 0 0
  1. <?php
  2.  
  3. // Exit if accessed directly
  4. if ( !defined('ABSPATH')) exit;
  5.  
  6. /**
  7.  * Home Page
  8.  *
  9.  * Note: You can overwrite home.php as well as any other Template in Child Theme.
  10.  * Create the same file (name) include in /responsive-child-theme/ and you're all set to go!
  11.  * @see            http://codex.wordpress.org/Child_Themes
  12.  *
  13.  * @file           home.php
  14.  * @package        Responsive
  15.  * @author         Emil Uzelac
  16.  * @copyright      2003 - 2013 ThemeID
  17.  * @license        license.txt
  18.  * @version        Release: 1.0
  19.  * @filesource     wp-content/themes/responsive/home.php
  20.  * @link           http://codex.wordpress.org/Template_Hierarchy
  21.  * @since          available since Release 1.0
  22.  */
  23. ?>
  24. <?php get_header(); ?>
  25. <?php get_sidebar('home'); ?>
  26. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement