| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/wp-seopress-pro/inc/admin/callbacks/ |
Upload File : |
<?php
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
function seopress_rich_snippets_enable_callback() {
$options = get_option('seopress_pro_option_name');
$check = isset($options['seopress_rich_snippets_enable']); ?>
<label for="seopress_rich_snippets_enable">
<input id="seopress_rich_snippets_enable" name="seopress_pro_option_name[seopress_rich_snippets_enable]"
type="checkbox" <?php if ('1' == $check) { ?>
checked="yes"
<?php } ?>
value="1"/>
<?php _e('Enable Structured Data Types metabox for your posts, pages and custom post types', 'wp-seopress-pro'); ?>
</label>
<?php if (isset($options['seopress_rich_snippets_enable'])) {
esc_attr($options['seopress_rich_snippets_enable']);
}
}
function seopress_rich_snippets_publisher_logo_callback() {
$options = get_option('seopress_pro_option_name');
$options_set = isset($options['seopress_rich_snippets_publisher_logo']) ? esc_attr($options['seopress_rich_snippets_publisher_logo']) : null;
$options_set2 = isset($options['seopress_rich_snippets_publisher_logo_width']) ? esc_attr($options['seopress_rich_snippets_publisher_logo_width']) : null;
$options_set3 = isset($options['seopress_rich_snippets_publisher_logo_height']) ? esc_attr($options['seopress_rich_snippets_publisher_logo_height']) : null;
$check = isset($options['seopress_rich_snippets_publisher_logo']); ?>
<input id="seopress_rich_snippets_publisher_logo_meta" autocomplete="off" type="text"
value="<?php echo $options_set; ?>"
name="seopress_pro_option_name[seopress_rich_snippets_publisher_logo]"
aria-label="<?php _e('Upload your publisher logo', 'wp-seopress-pro'); ?>"
placeholder="<?php esc_html_e('Select your logo', 'wp-seopress-pro'); ?>" />
<input id="seopress_rich_snippets_publisher_logo_width" type="hidden"
value="<?php echo $options_set2; ?>"
name="seopress_pro_option_name[seopress_rich_snippets_publisher_logo_width]" />
<input id="seopress_rich_snippets_publisher_logo_height" type="hidden"
value="<?php echo $options_set3; ?>"
name="seopress_pro_option_name[seopress_rich_snippets_publisher_logo_height]" />
<input id="seopress_rich_snippets_publisher_logo_upload" class="btn btnSecondary" type="button"
value="<?php _e('Upload an Image', 'wp-seopress-pro'); ?>" />
<input id="seopress_rich_snippets_publisher_logo_remove" class="btn btnLink is-deletable" type="button" value="<?php _e('Remove', 'wp-seopress'); ?>" />
<p class="seopress-help description">
<?php _e('A logo that is representative of the organization. Files must be BMP, GIF, JPEG, PNG, WebP or SVG. The image must be 112x112px, at minimum.', 'wp-seopress-pro'); ?>
</p>
<div id="seopress_rich_snippets_publisher_logo_placeholder_upload" class="seopress-img-placeholder" data_caption="<?php _e('Click to select an image', 'wp-seopress'); ?>">
<img id="seopress_rich_snippets_publisher_logo_placeholder_src" src="<?php echo $options_set; ?>" />
</div>
<?php
if (isset($options['seopress_rich_snippets_publisher_logo'])) {
esc_attr($options['seopress_rich_snippets_publisher_logo']);
}
}
function seopress_rich_snippets_site_nav_callback() {
$options = get_option('seopress_pro_option_name');
$selected = isset($options['seopress_rich_snippets_site_nav']) ? $options['seopress_rich_snippets_site_nav'] : null; ?>
<select id="seopress_rich_snippets_site_nav" name="seopress_pro_option_name[seopress_rich_snippets_site_nav]">
<option <?php if ('none' == $selected) { ?>
selected="selected"
<?php } ?>
value="none"><?php _e('None', 'wp-seopress-pro'); ?>
</option>
<?php if (function_exists('wp_get_nav_menus')) {
$menus = wp_get_nav_menus();
if ( ! empty($menus)) {
foreach ($menus as $menu) { ?>
<option <?php if (esc_attr($menu->term_id) == $selected) { ?>
selected="selected"
<?php } ?>
value="<?php esc_attr_e($menu->term_id); ?>"><?php esc_html_e($menu->name); ?>
</option>
<?php }
}
} ?>
</select>
<p class="description">
<?php _e('Select your primary navigation. This can help search engines better understand the structure of your site.', 'wp-seopress-pro'); ?>
</p>
<p class="description">
<?php _e('This schema will be printed in the source code of your homepage.', 'wp-seopress-pro'); ?>
</p>
<?php if (isset($options['seopress_rich_snippets_site_nav'])) {
esc_attr($options['seopress_rich_snippets_site_nav']);
}
}