This file contains hidden or 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
| add_theme_support( 'post-thumbnails', array( 'post' ) ); | |
| add_image_size( 'post-image', 150, 150, true ); |
This file contains hidden or 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
| //Comments query | |
| <?php comments_popup_link( 'No Comments', 'One Comments', '% Comments', '', 'Comment is disable' ); ?> | |
| //comments template | |
| <?php comments_template( '', true ); ?> |
This file contains hidden or 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 |
OlderNewer