Changeset 2944887
- Timestamp:
- 07/29/2023 11:43:37 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
simple-site-verify/trunk/simple-site-verify-settings.php
r2944168 r2944887 80 80 81 81 $options = get_option( 'ssv_settings' ); // Plugin Saved Settings 82 $ssv_pinterest = sanitize_text_field( $options['ssv_pinterest'] ); 82 83 83 84 ?> 84 85 85 <input type='text' name='ssv_settings[ssv_pinterest]' <?php if (isset($options['ssv_pinterest'])) echo 'value="' . htmlspecialchars($options['ssv_pinterest'], ENT_QUOTES) . '"'; ?> id="pinterest" /><br />86 <input type='text' name='ssv_settings[ssv_pinterest]' <?php if (isset($options['ssv_pinterest'])) echo 'value="' . esc_html($ssv_pinterest) . '"'; ?> id="pinterest" /><br /> 86 87 This is your website's unique 32-character code. It is the code shown within content="" inside the meta tag given to you. 87 88 … … 94 95 95 96 $options = get_option( 'ssv_settings' ); // Plugin Saved Settings 97 $ssv_google = sanitize_text_field( $options['ssv_google'] ); 96 98 97 99 ?> 98 100 99 <input type='text' name='ssv_settings[ssv_google]' <?php if (isset($options['ssv_google'])) echo 'value="' . htmlspecialchars($ options['ssv_google'], ENT_QUOTES) . '"'; ?> id="google" /><br />101 <input type='text' name='ssv_settings[ssv_google]' <?php if (isset($options['ssv_google'])) echo 'value="' . htmlspecialchars($ssv_google) . '"'; ?> id="google" /><br /> 100 102 Google Search Console/Google Apps. This is your website's unique code. It is the code shown within content="" inside the meta tag given to you. 101 103 … … 108 110 109 111 $options = get_option( 'ssv_settings' ); // Plugin Saved Settings 112 $ssv_google_analytics = sanitize_text_field( $options['ssv_google_analytics'] ); 110 113 111 114 ?> 112 115 113 <input type='text' name='ssv_settings[ssv_google_analytics]' <?php if (isset($options['ssv_google_analytics'])) echo 'value="' . htmlspecialchars($ options['ssv_google_analytics'], ENT_QUOTES) . '"'; ?> id="google-analytics" /><br />This is your website's unique code. It is the code shown within content="" inside the meta tag given to you.116 <input type='text' name='ssv_settings[ssv_google_analytics]' <?php if (isset($options['ssv_google_analytics'])) echo 'value="' . htmlspecialchars($ssv_google_analytics) . '"'; ?> id="google-analytics" /><br />This is your website's unique code. It is the code shown within content="" inside the meta tag given to you. 114 117 115 118 <?php … … 121 124 122 125 $options = get_option( 'ssv_settings' ); // Plugin Saved Settings 126 $ssv_bing = sanitize_text_field( $options['ssv_bing'] ); 123 127 124 128 ?> 125 129 126 <input type='text' name='ssv_settings[ssv_bing]' <?php if (isset($options['ssv_bing'])) echo 'value="' . htmlspecialchars($ options['ssv_bing'], ENT_QUOTES) . '"'; ?> id="bing" /><br />This is your website's unique code. It is the code shown within content="" inside the meta tag given to you.130 <input type='text' name='ssv_settings[ssv_bing]' <?php if (isset($options['ssv_bing'])) echo 'value="' . htmlspecialchars($ssv_bing) . '"'; ?> id="bing" /><br />This is your website's unique code. It is the code shown within content="" inside the meta tag given to you. 127 131 128 132 <?php … … 134 138 135 139 $options = get_option( 'ssv_settings' ); // Plugin Saved Settings 140 $ssv_yandex = sanitize_text_field( $options['ssv_yandex'] ); 136 141 137 142 ?> 138 143 139 <input type='text' name='ssv_settings[ssv_yandex]' <?php if (isset($options['ssv_yandex'])) echo 'value="' . htmlspecialchars($ options['ssv_yandex'], ENT_QUOTES) . '"'; ?> id="yandex" /><br />This is your website's unique code. It is the code shown within content="" inside the meta tag given to you.144 <input type='text' name='ssv_settings[ssv_yandex]' <?php if (isset($options['ssv_yandex'])) echo 'value="' . htmlspecialchars($ssv_yandex) . '"'; ?> id="yandex" /><br />This is your website's unique code. It is the code shown within content="" inside the meta tag given to you. 140 145 141 146
Note: See TracChangeset
for help on using the changeset viewer.