Changeset 2944168
- Timestamp:
- 07/27/2023 11:52:53 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
simple-site-verify/trunk/simple-site-verify-settings.php
r1946265 r2944168 83 83 ?> 84 84 85 <input type='text' name='ssv_settings[ssv_pinterest]' <?php if ( isset ( $options[ 'ssv_pinterest' ] ) ) echo 'value="' . $options[ 'ssv_pinterest' ]. '"'; ?> id="pinterest" /><br />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 86 This is your website's unique 32-character code. It is the code shown within content="" inside the meta tag given to you. 87 87 … … 97 97 ?> 98 98 99 <input type='text' name='ssv_settings[ssv_google]' <?php if ( isset ( $options[ 'ssv_google' ] ) ) echo 'value="' . $options[ 'ssv_google' ] . '"'; ?> id="google" /><br />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. 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 /> 100 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. 100 101 101 102 <?php … … 110 111 ?> 111 112 112 <input type='text' name='ssv_settings[ssv_google_analytics]' <?php if ( isset ( $options[ 'ssv_google_analytics' ] ) ) echo 'value="' . $options[ 'ssv_google_analytics' ] . '"'; ?> id="google" /><br />This is your website's unique code. It is the code shown within content="" inside the meta tag given to you.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. 113 114 114 115 <?php … … 123 124 ?> 124 125 125 <input type='text' name='ssv_settings[ssv_bing]' <?php if ( isset ( $options[ 'ssv_bing' ] ) ) echo 'value="' . $options[ '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.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. 126 127 127 128 <?php … … 136 137 ?> 137 138 138 <input type='text' name='ssv_settings[ssv_yandex]' <?php if ( isset ( $options[ 'ssv_yandex' ] ) ) echo 'value="' . $options[ '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. 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. 140 139 141 140 142 <?php
Note: See TracChangeset
for help on using the changeset viewer.