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
// Conditionally Load jQuery (javascript) | |
// Source: https://gist.github.com/gists/902090/ | |
var init, maybeLoadJq; | |
init = function() { | |
jQuery(document).ready(function() { | |
alert('Your Code Here'); | |
}); | |
}; |
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
//Mailto tracking code | |
$('a[href^="mailto\:"]').click(function() { | |
_gaq.push(['_trackEvent','Email', 'Click', $(this).attr('href') ]); | |
}); | |
//Download Tracking Code | |
$('a[href$="zip"],a[href$="pdf"],a[href$="doc"],a[href$="docx"],a[href$="xls"],a[href$="xlsx"],a[href$="ppt"],a[href$="pptx"],a[href$="txt"],a[href$="csv"]').click(function() { | |
var u = $(this).attr('href'); _gaq.push(['_trackEvent','Download', u.match(/[^.]+$/), u ]); | |
}); |
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
//Conditionally load Google Analytics tracking code | |
//GA code optimized by Html5boiler plate -- https://github.com/paulirish/html5-boilerplate | |
if ( !window._gat || !window._gat._getTracker ) { | |
var _gaq=[["_setAccount","UA-XXX-1"],["_trackPageview"]]; | |
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1; | |
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js"; | |
s.parentNode.insertBefore(g,s)}(document,"script")); | |
} |
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
function remove_shrsb () { | |
remove_filter('the_content', 'shrsb_position_menu'); | |
} | |
function wpr_add_shrsb() { | |
add_filter('the_content', 'shrsb_position_menu'); | |
} | |
add_action( 'wp_resume_shortcode_pre', 'wpr_remove_shrsb' ); | |
add_action( 'wp_resume_shortcode_post', 'wpr_add_shrsb' ); |
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
function wpr_add_sb_metabox() { | |
if( !function_exists( 'shrsb_get_current_user_role' ) || | |
( shrsb_get_current_user_role() != "Administrator" && shrsb_get_current_user_role() != "Editor") | |
) | |
return false; | |
add_meta_box( 'hide_options_meta', __( 'Shareaholic', 'shrsb' ), '_hide_options_meta_box_content', 'wp_resume_position', 'advanced', 'high' ); | |
} |
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 | |
/* | |
Plugin Name: Top Help Users | |
Description: Widget to display top users of help.hackshackers.com by reputation | |
Author: Benjamin J. Balter | |
Version: 1.0 | |
Author URI: http://ben.balter.com | |
*/ | |
class Top_Help_Users_Widget extends WP_Widget { |
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 | |
/* | |
Plugin Name: Help - Recently Answered Questions | |
Description: Widget to display recently answers questions on help.hackshackers.com | |
Author: Benjamin J. Balter | |
Version: 1.0 | |
Author URI: http://ben.balter.com | |
*/ | |
class Recent_Answers_Widget extends WP_Widget { |
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 | |
//absolute path to wp-load.php, or relative to this script | |
//e.g., ../wp-core/wp-load.php | |
include( 'trunk/wp-load.php' ); | |
//grab the WPDB database object, using WP's database | |
//more info: http://codex.wordpress.org/Class_Reference/wpdb | |
global $wpdb; |
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
function content_filter( $content ) { | |
global $post; | |
$output = array(); | |
$taxs = get_taxonomies( array( 'object_type' => array( $post->post_type ) ) ); | |
foreach ( $taxs as $tax ) { | |
$tax = get_taxonomy( $tax ); | |
$terms = get_the_term_list( $post->ID, $tax->name, null, ', ' ); |
OlderNewer