Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ function mytheme_comment($comment, $args, $depth) {
));
}

// Post Formats
if ( function_exists( 'add_theme_support' ) )
add_theme_support( 'post-formats', array( 'aside', 'gallery', 'link', 'iamge', 'quote', 'status', 'video', 'audio', 'chat' ) );

// Custom Functions for CSS/Javascript Versioning
$GLOBALS["TEMPLATE_URL"] = get_bloginfo('template_url')."/";
$GLOBALS["TEMPLATE_RELATIVE_URL"] = wp_make_link_relative($GLOBALS["TEMPLATE_URL"]);
Expand Down