Skip to content

Instantly share code, notes, and snippets.

View kingkool68's full-sized avatar
💻
Coding.

Russell Heimlich kingkool68

💻
Coding.
View GitHub Profile
@aarongustafson
aarongustafson / undoing-tables.html
Last active December 11, 2015 15:39
A Strategy for Undoing Tables
<table>
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Email</th>
<th scope="col">Dept, Title</th>
<th scope="col">Phone</th>
</tr>
</thead>
<tbody>
@trepmal
trepmal / pretty-attachment-links.php
Created August 10, 2012 03:48
Pretty Attachment Links
@trepmal
trepmal / maybe-create-missing-intermediate-images.php
Created December 29, 2011 00:22
WordPress: Create missing intermediate images
<?php
/*
* @param int $id Image attachment ID
* @param string $size_name Name of custom image size as added with add_image_size()
* return bool True if intermediate image exists or was created. False if failed to create.
*/
function maybe_create_missing_intermediate_images( $id, $size_name ) {