This file contains hidden or 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 | |
include('wp-load.php'); | |
global $wpdb; | |
$aUsers = $wpdb->get_results("SELECT user_id,meta_value FROM $wpdb->usermeta WHERE meta_key = 'bb_favorites'"); | |
$i = 0; | |
foreach($aUsers as $user){ | |
This file contains hidden or 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
flowplayer( function(api,root) { | |
var root = jQuery(root); | |
api.bind('progress', function(e,api,current) { | |
fv_track(e,api,current); | |
}).bind('finish ready ', function(e,api) { | |
for( var j in fv_ga_events ) { | |
root.removeData('fv_custom_track_'+fv_ga_events[j]); | |
} | |
}); | |
This file contains hidden or 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 | |
if( is_multisite() && function_exists('switch_to_blog') ) { | |
add_filter( 'get_avatar', 'fv_pb_global_avatar_start', 20, 5 ); | |
add_filter( 'get_avatar', 'fv_pb_global_avatar_end', 22, 5 ); | |
function fv_pb_global_avatar_start( $avatar ) { | |
switch_to_blog(1); | |
return $avatar; | |
} |
This file contains hidden or 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 | |
/* | |
Our Wordpress is located in https://our-site.com/wordpress | |
Here's the relevant part of our wp-config.php | |
define('MULTISITE', true); | |
define('SUBDOMAIN_INSTALL', true); | |
define('DOMAIN_CURRENT_SITE', 'our-site.com'); |
This file contains hidden or 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
#!/usr/bin/php -q | |
<?php | |
// set to true to avoid ' and " converting to HTML special characters | |
@define('skip_glyphs', false); | |
// 3+ uppercase span tag is commented out, as everyone hates it | |
// instruction on how to use it available here: http://foliovision.com/2011/11/08/textile-editing-bbedit | |
// define these before including this file to override the standard glyphs |
NewerOlder