Loading...
March 4, 2013#

Grab This

<?php echo get_template_directory_uri(); ?>
<?php /* Start loop */ ?>
<?php while (have_posts()) : the_post(); ?>
      <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
      <?php the_content(); ?>
<?php endwhile; /* End the loop */ ?>
<?php echo "testing"; ?>
add_theme_support('post-thumbnails');
// set_post_thumbnail_size(150, 150, false);
 
// Add post formarts supports. http://codex.wordpress.org/Post_Formats
add_theme_support('post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat'));