field-bulk-edit.php
8 months ago
field-meta-box-news.php
7 months ago
field-meta-box.php
6 months ago
field-news-categories.php
7 months ago
field-news-hierarchical.php
6 months ago
field-news-keywords.php
6 months ago
field-news-name.php
9 months ago
field-news-notifier.php
5 months ago
field-news-post-type.php
8 months ago
field-news-stocktickers.php
6 months ago
field-quick-edit.php
11 months ago
field-robots.php
11 months ago
field-sitemap-author-settings.php
6 months ago
field-sitemap-authors.php
7 months ago
field-sitemap-custom.php
11 months ago
field-sitemap-disable.php
11 months ago
field-sitemap-notifier.php
2 months ago
field-sitemap-post-type-settings.php
2 months ago
field-sitemap-post-types-limit.php
11 months ago
field-sitemap-post-types.php
7 months ago
field-sitemap-server.php
6 months ago
field-sitemap-slug.php
8 months ago
field-sitemap-taxonomies.php
7 months ago
field-sitemap-taxonomy-settings.php
6 months ago
field-sitemap-urls.php
11 months ago
field-sitemaps.php
11 months ago
help-tab-advanced.php
6 months ago
help-tab-authors.php
6 months ago
help-tab-news-categories.php
11 months ago
help-tab-news-hierarchical.php
8 months ago
help-tab-news-keywords.php
11 months ago
help-tab-news-name.php
11 months ago
help-tab-news-notifier.php
6 months ago
help-tab-news-post-types.php
11 months ago
help-tab-news-sidebar.php
11 months ago
help-tab-news-stocktickers.php
11 months ago
help-tab-news.php
11 months ago
help-tab-post-types-general.php
11 months ago
help-tab-post-types.php
6 months ago
help-tab-robots.php
11 months ago
help-tab-sidebar.php
11 months ago
help-tab-sitemaps.php
11 months ago
help-tab-support.php
6 months ago
help-tab-taxonomies.php
6 months ago
notice-xmlsf-advanced-news.php
11 months ago
notice-xmlsf-advanced.php
11 months ago
page-sitemap-news.php
6 months ago
page-sitemap.php
7 months ago
section-advanced-compat-message.php
9 months ago
section-advanced-intro.php
11 months ago
section-advanced-news-compat-message.php
9 months ago
section-bwt-data.php
2 months ago
section-bwt-oauth-intro.php
6 months ago
section-bwt-oauth-stage-1.php
6 months ago
section-bwt-oauth-stage-2.php
6 months ago
section-gsc-data-news.php
3 months ago
section-gsc-data.php
2 months ago
section-gsc-oauth-intro.php
6 months ago
section-gsc-oauth-stage-1-2.php
2 months ago
section-gsc-oauth-stage-3.php
6 months ago
section-ping-log.php
3 months ago
sidebar-advanced-plug.php
2 months ago
sidebar-bwt-connect.php
6 months ago
sidebar-contribute.php
9 months ago
sidebar-gsc-connect.php
6 months ago
sidebar-help.php
6 months ago
sidebar-links.php
6 months ago
sidebar-news-advanced-plug.php
6 months ago
sidebar-news-links.php
6 months ago
sidebar-news-tools.php
7 months ago
sidebar-priority-support.php
7 months ago
sidebar-tools.php
7 months ago
field-sitemaps.php
49 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Sitemaps settings view |
| 4 | * |
| 5 | * @package XML Sitemap & Google News |
| 6 | */ |
| 7 | |
| 8 | ?> |
| 9 | <fieldset id="xmlsf_sitemaps"> |
| 10 | <legend class="screen-reader-text"> |
| 11 | <?php esc_html_e( 'Enable XML sitemaps', 'xml-sitemap-feed' ); ?> |
| 12 | </legend> |
| 13 | <label> |
| 14 | <input type="checkbox" name="xmlsf_sitemaps[sitemap]" id="xmlsf_sitemaps_index" value="1"<?php checked( XMLSF\sitemaps_enabled( 'sitemap' ) ); ?><?php disabled( ! apply_filters( 'xmlsf_sitemaps_enabled', true, 'sitemap' ) ); ?> /> |
| 15 | <?php esc_html_e( 'XML Sitemap Index', 'xml-sitemap-feed' ); ?> |
| 16 | </label> |
| 17 | |
| 18 | <?php if ( XMLSF\sitemaps_enabled( 'sitemap' ) ) { ?> |
| 19 | <span class="description"> |
| 20 | – |
| 21 | <a href="<?php echo esc_attr( admin_url( 'options-general.php' ) ); ?>?page=xmlsf" id="xmlsf_link"><?php echo esc_html( translate( 'Settings' ) ); ?></a> | |
| 22 | <a href="<?php echo esc_attr( xmlsf()->sitemap->get_sitemap_url() ); ?>" target="_blank"><?php echo esc_html( translate( 'View' ) ); ?></a> |
| 23 | </span> |
| 24 | <?php } ?> |
| 25 | |
| 26 | <br> |
| 27 | |
| 28 | <label> |
| 29 | <input type="checkbox" name="xmlsf_sitemaps[sitemap-news]" id="xmlsf_sitemaps_news" value="1"<?php checked( XMLSF\sitemaps_enabled( 'news' ) ); ?><?php disabled( ! apply_filters( 'xmlsf_sitemaps_enabled', true, 'news' ) ); ?> /> |
| 30 | <?php esc_html_e( 'Google News Sitemap', 'xml-sitemap-feed' ); ?> |
| 31 | </label> |
| 32 | |
| 33 | <?php |
| 34 | if ( XMLSF\sitemaps_enabled( 'news' ) ) { |
| 35 | ?> |
| 36 | <span class="description"> |
| 37 | – |
| 38 | <a href="<?php echo esc_url( admin_url( 'options-general.php' ) ); ?>?page=xmlsf_news" id="xmlsf_news_link"><?php echo esc_html( translate( 'Settings' ) ); ?></a> | |
| 39 | <a href="<?php echo esc_url( xmlsf()->sitemap_news->get_sitemap_url() ); ?>" target="_blank"><?php echo esc_html( translate( 'View' ) ); ?></a> |
| 40 | </span> |
| 41 | <?php } ?> |
| 42 | |
| 43 | </fieldset> |
| 44 | <script> |
| 45 | if ( window.location.hash === '#xmlsf_sitemaps' ) { |
| 46 | jQuery( 'html, body' ).animate( { scrollTop: jQuery("#xmlsf_sitemaps").offset().top-40 }, 400, 'swing', function(){ jQuery( '#xmlsf_sitemaps' ).closest( 'td' ).addClass( 'highlight' ); } ); |
| 47 | } |
| 48 | </script> |
| 49 |