Skip to content

Instantly share code, notes, and snippets.

View mcgwier's full-sized avatar

Jason Mcgwier mcgwier

View GitHub Profile
@scribu
scribu / gist:906872
Created April 7, 2011 01:21
'price' sortable column example
<?php
// Register the column
function price_column_register( $columns ) {
$columns['price'] = __( 'Price', 'my-plugin' );
return $columns;
}
add_filter( 'manage_edit-post_columns', 'price_column_register' );
@tracend
tracend / .htaccess
Created April 2, 2011 07:19
Wordpress: Almost Perfect htaccess File for WordPress blogs - Source: http://www.josiahcole.com/2007/07/11/almost-perfect-htaccess-file-for-wordpress-blogs/
# protect the htaccess file
<files .htaccess>
order allow,deny
deny from all
</files>
# disable the server signature
ServerSignature Off
# limit file uploads to 10mb