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 5a19a9c commit 1c14a5cCopy full SHA for 1c14a5c
plugins/jquery-filters.php
@@ -35,6 +35,15 @@
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
+ $siteurl = 'http://' . strtr( JQUERY_STAGING_FORMAT, [ '%s' => JQUERY_LIVE_SITE ] );
42
+ $value = $siteurl . '/wp-content/themes';
43
+ }
44
+ return $value;
45
+});
46
+
47
// Remove misc links from <head> on non-blog sites
48
if ( !get_option( 'jquery_is_blog' ) ) {
49
remove_action( 'wp_head', 'feed_links', 2 );
0 commit comments