Created
January 8, 2016 06:48
-
-
Save sumanahmed/f56f00a49f6bc2234d36 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//html language set | |
<html <?php language_attributes(); ?> > | |
//meta charset | |
<meta charset="<?php bloginfo( 'charset' ); ?>"> | |
//title set | |
<title><?php wp_title( '|', true, 'right' ); ?></title> | |
//before ending head | |
<?php wp_head(); ?> | |
//before ending body | |
<?php wp_footer(); ?> | |
//time set | |
<?php the_time('M d, Y') ?> | |
//date set | |
<?php the_time('d F, y | g:i a'); ?> | |
//error post | |
<?php else : ?> | |
<h3><?php _e('404 Error: Not Found'); ?></h3> | |
<?php endif; ?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment