Skip to content

Instantly share code, notes, and snippets.

View williamsba's full-sized avatar

Brad Williams williamsba

View GitHub Profile
@williamsba
williamsba / gist:6240607
Created August 15, 2013 12:53
WordPress plugin to show full RSS post content when a specific query string exists
<?php
/*
Plugin Name: RSS Feed Customizer
Plugin URI: http://webdevstudios.com
Description: Show full RSS content entries using a query string ( ex: http://example.com/feed/?display=full )
Version: 1.0
Author: THE Brad
Author URI: http://webdevstudios.com
*/
@williamsba
williamsba / gist:7824876
Created December 6, 2013 14:17
How to get the page view count from Jetpack in WordPress
/**
* Get post pageview count
*/
function wds_post_pageview_count( $post_id ) {
// Check for transient
if ( ! ( $count = get_transient( 'wds_post_pageview_count' . $post_id ) ) ) {
// Verify we're running Jetpack
if ( function_exists( 'stats_get_csv' ) ) {
javascript:(function(){var%20total=0,count=0;jQuery('p.downloads').each(function(i,e){count++;total+=parseInt(jQuery(e).text().replace(/,/g,''));});total=total.toString().replace(/\B(?=(\d{3})+(?!\d))/g,',');alert(count+'%20plugins%20and%20'+total+'%20downloads');})();
@williamsba
williamsba / gist:8851321
Created February 6, 2014 19:50
Return only the latest product version on the front-end in Easy Digital Downloads
add_filter( 'edd_download_files', 'appp_show_latest_product_version' );
function appp_show_latest_product_version( $files ) {
//only show the latest version of a product everywhere except the admin dashboard
if ( is_array( $files ) && ! is_admin() ) {
//count the file array size
$arr_count = count( $files );
javascript:var s = document.createElement('script');s.type='text/javascript';document.body.appendChild(s);s.src='http://erkie.github.com/asteroids.min.js';void(0);
javascript:(function(){var total=0,count=0;jQuery('p.downloads').each(function(i,e){count++;total+=parseInt(jQuery(e).text().replace(/,/g,''));});total=total.toString().replace(/\B(?=(\d{3})+(?!\d))/g,',');alert(count+' plugins and '+total+' downloads');})();