Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
CRAP
n/a
0 / 0
wpcom_hide_site_visibility_setting
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
3 * Hide various settings related to site visibility.
4 *
5 * @package automattic/jetpack-mu-wpcom
6 */
7
8/**
9 * Hide the "Site Visibility" setting in Reading Settings.
10 */
11function wpcom_hide_site_visibility_setting() {
12    echo '<style>
13        .option-site-visibility {
14            display: none !important;
15        }
16    </style>';
17}
18add_action( 'load-options-reading.php', 'wpcom_hide_site_visibility_setting' );
19
20/**
21 * Remove the "Update Services" section in Writing Settings.
22 */
23add_filter( 'enable_update_services_configuration', '__return_false' );