Skip to content

Instantly share code, notes, and snippets.

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

Pablo Noel pablonoel

🏠
Working from home
View GitHub Profile
@pablonoel
pablonoel / functions.php
Created September 8, 2017 00:33
A simplification for Wordpress gallery shortcode output
<?php
// Thumbnails
add_theme_support( 'post-thumbnails' );
add_image_size( 'image_1024', 1024, 1024 );
// Gallery
function simplier_gallery($attr) {
$post = get_post();
static $instance = 0;