Last active
August 29, 2015 14:04
-
-
Save jpcontrerasv/251b35a9ac329dbdcc5e to your computer and use it in GitHub Desktop.
Siteurl + Template URL
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 echo get_option('siteurl'); ?> | |
<?php bloginfo('template_url'); ?> | |
<?php bloginfo('stylesheet_url'); ?> | |
<?php wp_head(); ?> | |
<?php wp_footer(); ?> | |
<?php the_post_thumbnail( $size, $attr ); ?> | |
<?php get_header(); ?> | |
<?php get_footer(); ?> | |
<?php bloginfo('name'); ?> | <?php is_front_page() ? bloginfo('description') : wp_title(''); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment