Created
December 3, 2015 19:02
-
-
Save thadallender/c0617423beba9a0c9eea to your computer and use it in GitHub Desktop.
Filter for allowing local theme and plugin repo updates (for testing, never us on production site)
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 | |
/** Enable my local themes and plugins repository FFS!!! */ | |
function allow_my_custom_host( $allow, $host, $url ) { | |
if ( $host == 'put-your-repository-domain-here.com' ) | |
$allow = true; | |
return $allow; | |
} | |
add_filter( 'http_request_host_is_external', 'allow_my_custom_host', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment