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 993adbd commit db9c7b3Copy full SHA for db9c7b3
mu-plugins/jquery-filters.php
@@ -7,20 +7,6 @@
7
if ( defined( 'WP_INSTALLING' ) )
8
return;
9
10
-$options = jquery_default_site_options();
11
-$sites = jquery_sites();
12
-$options = array_merge( $options, $sites[ JQUERY_LIVE_SITE ]['options'] );
13
-foreach ( $options as $option => $value ) {
14
- if ( 'stylesheet' === $option || 'template' === $option )
15
- continue; // Don't mess with themes for now.
16
- add_filter( 'pre_option_' . $option, function( $null ) use ( $value, $blog_id ) {
17
- if ( $blog_id == get_current_blog_id() )
18
- return $value;
19
- return $null;
20
- } );
21
-}
22
-unset( $sites, $options, $option );
23
-
24
// Disable WordPress auto-paragraphing for posts.
25
remove_filter( 'the_content', 'wpautop' );
26
0 commit comments