Skip to content

Instantly share code, notes, and snippets.

View tonykwon's full-sized avatar
💭
😃

Tony Kwon tonykwon

💭
😃
View GitHub Profile
@tonykwon
tonykwon / gist:6215404
Last active December 20, 2015 23:49
Disabling Jetpack sharing_display
add_action( 'plugins_loaded', 'jetpack_sharedaddy' );
function jetpack_sharedaddy() {
if ( class_exists( 'Jetpack' ) &&
method_exists( 'Jetpack', 'get_active_modules' ) &&
in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) {
/*
* we need to control where sharedaddy modules show up
*/
@tonykwon
tonykwon / gist:2777679
Created May 23, 2012 20:44
Media Categories Plugin - Slow Query Fix
<?php
///
// Functions Called From Init
///
public function CheckForTermOrderColumn()
{
global $wpdb;