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
| <?php | |
| // in functions.php | |
| add_theme_support( 'post-thumbnails'); | |
| /* | |
| Wordpress crop an image = 5 size. Sizes are given below | |
| thumbnail // Thumbnail (default 150px x 150px max) |
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
| <?php the_title(); ?> | |
| function theme_latest_jquery() { | |
| wp_enqueue_script('jquery'); | |
| } | |
| add_action('init', 'theme_latest_jquery'); |
NewerOlder