PluginProbe ʕ •ᴥ•ʔ
XML Sitemap & Google News / trunk
XML Sitemap & Google News vtrunk
5.7.7 5.7.5 5.7.6 5.7.4 trunk 1.0 2.0 2.1 3.0 3.2 3.3 3.4 3.5 3.6.1 3.7.4 3.8.8 3.9.3 4.0.1 4.1.4 4.2.3 4.3.2 4.4.1 4.5.1 4.6.3 4.7.5 4.8.3 4.9.4 5.0.7 5.1.2 5.2.7 5.3.6 5.4.6 5.4.9 5.5.1 5.5.2 5.5.3 5.5.4 5.5.5 5.5.6 5.5.7 5.5.8 5.5.9 5.6 5.6.1 5.6.2 5.6.3 5.7 5.7.1 5.7.2 5.7.3
xml-sitemap-feed / views / admin / field-sitemap-notifier.php
xml-sitemap-feed / views / admin Last commit date
field-bulk-edit.php 9 months ago field-meta-box-news.php 9 months ago field-meta-box.php 7 months ago field-news-categories.php 9 months ago field-news-hierarchical.php 7 months ago field-news-keywords.php 7 months ago field-news-name.php 10 months ago field-news-notifier.php 7 months ago field-news-post-type.php 9 months ago field-news-stocktickers.php 7 months ago field-quick-edit.php 1 year ago field-robots.php 1 year ago field-sitemap-author-settings.php 7 months ago field-sitemap-authors.php 9 months ago field-sitemap-custom.php 1 year ago field-sitemap-disable.php 1 year ago field-sitemap-notifier.php 3 months ago field-sitemap-post-type-settings.php 3 months ago field-sitemap-post-types-limit.php 1 year ago field-sitemap-post-types.php 9 months ago field-sitemap-server.php 7 months ago field-sitemap-slug.php 9 months ago field-sitemap-taxonomies.php 9 months ago field-sitemap-taxonomy-settings.php 7 months ago field-sitemap-urls.php 1 year ago field-sitemaps.php 1 year ago help-tab-advanced.php 7 months ago help-tab-authors.php 7 months ago help-tab-news-categories.php 1 year ago help-tab-news-hierarchical.php 9 months ago help-tab-news-keywords.php 1 year ago help-tab-news-name.php 1 year ago help-tab-news-notifier.php 7 months ago help-tab-news-post-types.php 1 year ago help-tab-news-sidebar.php 1 year ago help-tab-news-stocktickers.php 1 year ago help-tab-news.php 1 year ago help-tab-post-types-general.php 1 year ago help-tab-post-types.php 7 months ago help-tab-robots.php 1 year ago help-tab-sidebar.php 1 year ago help-tab-sitemaps.php 1 year ago help-tab-support.php 7 months ago help-tab-taxonomies.php 7 months ago notice-xmlsf-advanced-news.php 1 year ago notice-xmlsf-advanced.php 1 year ago page-sitemap-news.php 7 months ago page-sitemap.php 9 months ago section-advanced-compat-message.php 10 months ago section-advanced-intro.php 1 year ago section-advanced-news-compat-message.php 10 months ago section-bwt-data.php 3 months ago section-bwt-oauth-intro.php 7 months ago section-bwt-oauth-stage-1.php 7 months ago section-bwt-oauth-stage-2.php 7 months ago section-gsc-data-news.php 4 months ago section-gsc-data.php 3 months ago section-gsc-oauth-intro.php 7 months ago section-gsc-oauth-stage-1-2.php 3 months ago section-gsc-oauth-stage-3.php 7 months ago section-ping-log.php 4 months ago sidebar-advanced-plug.php 3 months ago sidebar-bwt-connect.php 7 months ago sidebar-contribute.php 10 months ago sidebar-gsc-connect.php 7 months ago sidebar-help.php 7 months ago sidebar-links.php 7 months ago sidebar-news-advanced-plug.php 7 months ago sidebar-news-links.php 7 months ago sidebar-news-tools.php 9 months ago sidebar-priority-support.php 9 months ago sidebar-tools.php 9 months ago
field-sitemap-notifier.php
40 lines
1 <?php
2 /**
3 * Sitemap notifier field
4 *
5 * @package XML Sitemap & Google News
6 */
7
8 $notifier = \get_option( 'xmlsf_sitemap_notifier');
9 ?>
10 <fieldset>
11 <legend class="screen-reader-text">
12 <?php esc_html_e( 'Sitemap notifier', 'xml-sitemap-feed' ); ?>
13 </legend>
14 <p>
15 <label>
16 <input type="checkbox" name="xmlsf_sitemap_notifier[]" id="xmlsf_sitemap_notifier_google" value="google"<?php checked( in_array( 'google', (array) $notifier ) || '1' === $notifier ); ?><?php disabled( ! apply_filters( 'xmlsf_advanced_enabled', false ) ); ?> />
17 <?php printf( /* translators: %s: Google Search Console */ esc_html__( 'Ping %s', 'xml-sitemap-feed' ), esc_html__( 'Google Search Console', 'xml-sitemap-feed' ) ); ?>
18 </label>
19 </p>
20 <p>
21 <label>
22 <input type="checkbox" name="xmlsf_sitemap_notifier[]" id="xmlsf_sitemap_notifier_bing" value="bing"<?php checked( in_array( 'bing', (array) $notifier ) ); ?><?php disabled( ! apply_filters( 'xmlsf_advanced_enabled', false ) ); ?> />
23 <?php printf( /* translators: %s: Bing Webmaster Tools */ esc_html__( 'Ping %s', 'xml-sitemap-feed' ), esc_html__( 'Bing Webmaster Tools', 'xml-sitemap-feed' ) ); ?>
24 </label>
25 </p>
26
27 <p class="description">
28 <?php esc_html_e( 'Instantly notify search engines upon each new publication.', 'xml-sitemap-feed' ); ?>
29 <?php apply_filters( 'xmlsf_advanced_enabled', false ) || printf( /* Translators: %s: XML Sitemap Advanced (with link) */ esc_html__( 'Available in %s.', 'xml-sitemap-feed' ), '<a href="https://premium.status301.com/downloads/xml-sitemap-advanced/" target="_blank">' . esc_html__( 'XML Sitemap Advanced', 'xml-sitemap-feed' ) . '</a>' ); ?>
30 <?php
31 if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON && apply_filters( 'xmlsf_advanced_enabled', false ) ) {
32 ?>
33 <br>
34 <span style="color:red" class="warning">
35 <?php esc_html_e( 'Warning: The sitemap notifier depends on internal WordPress events but you seem to have WP Cron disabled. Make sure that you are using a reliable alternative to WP Cron, like a server cron job, to trigger events on fairly short interval, e.g. once every minute. If the interval is longer, automatic notifications will suffer longer delays.', 'xml-sitemap-feed' ); ?>
36 </span>
37 <?php } ?>
38 </p>
39 </fieldset>
40