File: /www/wwwroot/njmuedu.com/wp-content/plugins/xml-sitemap-feed/views/admin/field-sitemaps.php
<?php
/**
* Sitemaps settings view
*
* @package XML Sitemap & Google News
*/
?>
<fieldset id="xmlsf_sitemaps">
<legend class="screen-reader-text">
<?php esc_html_e( 'Enable XML sitemaps', 'xml-sitemap-feed' ); ?>
</legend>
<label>
<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' ) ); ?> />
<?php esc_html_e( 'XML Sitemap Index', 'xml-sitemap-feed' ); ?>
</label>
<?php if ( xmlsf_sitemaps_enabled( 'sitemap' ) ) { ?>
<span class="description">
–
<a href="<?php echo esc_attr( admin_url( 'options-general.php' ) ); ?>?page=xmlsf" id="xmlsf_link"><?php echo esc_html( translate( 'Settings' ) ); ?></a> |
<a href="<?php echo esc_attr( xmlsf_sitemap_url() ); ?>" target="_blank"><?php echo esc_html( translate( 'View' ) ); ?></a>
</span>
<?php } ?>
<br>
<label>
<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' ) ); ?> />
<?php esc_html_e( 'Google News Sitemap', 'xml-sitemap-feed' ); ?>
</label>
<?php
if ( xmlsf_sitemaps_enabled( 'news' ) ) {
?>
<span class="description">
–
<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> |
<a href="<?php echo esc_url( xmlsf_sitemap_url( 'news' ) ); ?>" target="_blank"><?php echo esc_html( translate( 'View' ) ); ?></a>
</span>
<?php } ?>
</fieldset>
<script>
jQuery( 'document' ).ready( function( $ ) {
if ( window.location.hash === '#xmlsf_sitemaps' ) {
$( '#xmlsf_sitemaps' ).closest( 'td' ).addClass( 'highlight' );
$( 'html, body' ).animate( { scrollTop: $("#xmlsf_sitemaps").offset().top-40 }, 800 );
}
} );
</script>