Skip to content

Instantly share code, notes, and snippets.

@ryanhellyer
Created November 29, 2012 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanhellyer/4171155 to your computer and use it in GitHub Desktop.
Save ryanhellyer/4171155 to your computer and use it in GitHub Desktop.
Code to disable WordPress theme updates
<?php
/*
* Disable theme updates
*
* @param array $r Response header
* @param string $url The update URL
*/
function slug_hidden_theme( $r, $url ) {
if ( 0 !== strpos( $url, 'http://api.wordpress.org/themes/update-check' ) )
return $r; // Not a theme update request. Bail immediately.
$themes = unserialize( $r['body']['themes'] );
unset( $themes[ get_option( 'template' ) ] );
unset( $themes[ get_option( 'stylesheet' ) ] );
$r['body']['themes'] = serialize( $themes );
return $r;
}
add_filter( 'http_request_args', 'slug_hidden_theme', 5, 2 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment