We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7711bf5 commit 286e155Copy full SHA for 286e155
plugins/jquery-filters.php
@@ -35,6 +35,16 @@
35
}
36
unset( $sites, $options, $option );
37
38
+// Ensure that the local port is used for template assets, if it exists.
39
+add_filter( 'theme_root_uri', function( $value ) {
40
+ if ( JQUERY_STAGING === 'local' ) {
41
+ // Don't specify http vs https here, as the site may be accessed via either.
42
+ $siteurl = '//' . strtr( JQUERY_STAGING_FORMAT, [ '%s' => JQUERY_LIVE_SITE ] );
43
+ $value = $siteurl . '/wp-content/themes';
44
+ }
45
+ return $value;
46
+});
47
+
48
// Remove misc links from <head> on non-blog sites
49
if ( !get_option( 'jquery_is_blog' ) ) {
50
remove_action( 'wp_head', 'feed_links', 2 );
0 commit comments