Skip to content

Instantly share code, notes, and snippets.

@hectorlorenzo
hectorlorenzo / center_content
Created August 19, 2014 08:45
Centers content vertically and horizontally
<div style="display: table; width: 100%; height: 100%;">
<div style="display: table-cell; vertical-align: middle;">
<!-- Content -->
</div>
</div>
@hectorlorenzo
hectorlorenzo / get_attached_images
Created January 29, 2014 06:57
Simple Wordpress function to get the attached images that belong to a specific post.
// get all attachments from a post, except the featured image
function get_attached_images ( $post_ID, $featured_image = false ) {
$args = array(
'post_type' => 'attachment',
'posts_per_page' => -1,
'post_parent' => $post_ID
);
// do we want the featured image?