This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/// | |
// Functions Called From Init | |
/// | |
public function CheckForTermOrderColumn() | |
{ | |
global $wpdb; |
NewerOlder