PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
← All changes | admin/views/tabs/network/general.php +3 -3 18.228.5 View file →
@@ -25,9 +25,9 @@
25 25 sprintf( __( 'Who should have access to the %1$s settings', 'wordpress-seo' ), 'Yoast SEO' ),
26 26 [
27 27 'admin' => __( 'Site Admins (default)', 'wordpress-seo' ),
28 28 'superadmin' => __( 'Super Admins only', 'wordpress-seo' ),
29 - ]
29 + ],
30 30 );
31 31
32 32 if ( get_blog_count() <= 100 ) {
33 33 $network_admin = new Yoast_Network_Admin();
@@ -34,9 +34,9 @@
34 34
35 35 $yform->select(
36 36 'defaultblog',
37 37 __( 'New sites in the network inherit their SEO settings from this site', 'wordpress-seo' ),
38 - $network_admin->get_site_choices( true, true )
38 + $network_admin->get_site_choices( true, true ),
39 39 );
40 40 echo '<p>' . esc_html__( 'Choose the site whose settings you want to use as default for all sites that are added to your network. If you choose \'None\', the normal plugin defaults will be used.', 'wordpress-seo' ) . '</p>';
41 41 }
42 42 else {
@@ -45,9 +45,9 @@
45 45 printf(
46 46 /* translators: 1: link open tag; 2: link close tag. */
47 47 esc_html__( 'Enter the %1$sSite ID%2$s for the site whose settings you want to use as default for all sites that are added to your network. Leave empty for none (i.e. the normal plugin defaults will be used).', 'wordpress-seo' ),
48 48 '<a href="' . esc_url( network_admin_url( 'sites.php' ) ) . '">',
49 - '</a>'
49 + '</a>',
50 50 );
51 51 echo '</p>';
52 52 }
53 53