Skip to content

Instantly share code, notes, and snippets.

View weskoop's full-sized avatar
🎛️

wes koop weskoop

🎛️
View GitHub Profile
// Hides Yoast SEO Plugin Field Columns for Author users and below
// @since Jan, 2013
// @author R. Dall
function my_columns_filter( $columns ) {
if( ! current_user_can( 'edit_users' ) )
unset( $columns['wpseo-score'], $columns['wpseo-title'], $columns['wpseo-metadesc'], $columns['wpseo-focuskw'] );
return $columns;
@weskoop
weskoop / gist:3843153
Created October 6, 2012 00:00 — forked from pippinsplugins/gist:3843128
That's better!
//get the review type based on page custom meta field
function oswc_get_review_meta($postid) {
//try every reasonble conceivable variation that the user my enter to make this as user friendly as possible
$postTypeName = get_post_meta($postid, "Review Type", $single = true);
if(empty($postTypeName)){
$postTypeName = get_post_meta($postid, "review type", $single = true);
if(empty($postTypeName)){
$postTypeName = get_post_meta($postid, "reviewtype", $single = true);
if(empty($postTypeName)){
$postTypeName = get_post_meta($postid, "Reviewtype", $single = true);
@weskoop
weskoop / gist:2394508
Created April 15, 2012 19:52 — forked from evansolomon/gist:2274475
Install PHP
sudo apt-get install php5 php5-fpm php-pear php5-common php5-mcrypt php5-mysql php5-cli php5-gd php-apc