Skip to content

Instantly share code, notes, and snippets.

View Ramoonus's full-sized avatar
🏠
Working from home

Ramon van Belzen Ramoonus

🏠
Working from home
View GitHub Profile
@Ramoonus
Ramoonus / gist:0adf9633ae261e621493
Created August 17, 2014 11:20
WordPress Gallery Post Format
function ramoonus_gallery_post_format() {
add_theme_support( 'post-formats', array( 'gallery' ) );
}
add_action( 'after_setup_theme', 'ramoonus_gallery_post_format' );