# metasync/2.6.13/views/metasync-bing-console.php

Search Atlas SEO – OTTO AI SEO Automation for WordPress, version 2.6.13. 101 lines.

- Page: https://pluginprobe.com/plugins/metasync/2.6.13/code/views/metasync-bing-console.php
- Raw: https://pluginprobe.com/plugins/metasync/2.6.13/raw/views/metasync-bing-console.php
- Modified: 2026-04-14T18:12:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/metasync/2.6.13/code/views/metasync-bing-console.php#L10-L20`.

```php
<?php

/**
 * Bing Instant Indexing Console page contents.
 *
 * @package Bing Instant Indexing
 */
?>

	<?php if (!$this->get_setting('api_key')) { ?>
		<div class="dashboard-card">
			<h2>Configuration Required</h2>
			<p class="description" style="color: var(--dashboard-text-secondary); font-size: 16px; line-height: 1.6;">
			<?php
			echo wp_kses_post(
				sprintf(
					'Please goto the %s page to configure the Bing Instant Indexing (IndexNow API).',
					'<a href="' . esc_url(admin_url('admin.php?page=' . Metasync_Admin::$page_slug . '-seo-controls')) . '" style="color: var(--dashboard-accent);">Indexation Control</a>'
				)
			);
			?>
			</p>
		</div>
	<?php return;
	} ?>

	<?php
	$urls = home_url('/');
	if (isset($_GET['posturl'])) {
		$urls = esc_url_raw(wp_unslash($_GET['posturl']));
	}

	?>
	<form id="metasync-bing-form" class="wpform" method="post">
		<div class="dashboard-card">
			<h2>URL Configuration</h2>
			<p style="color: var(--dashboard-text-secondary); margin-bottom: 20px;">Enter the URLs you want to submit to Bing and other search engines via IndexNow.</p>

			<table class="form-table">
				<tr valign="top">
					<th scope="row">
						URLs for Indexing:
					</th>
					<td>
						<textarea name="metasync_bing_url" id="metasync-bing-url" class="wide-text" rows="4"><?php echo esc_textarea($urls); ?></textarea>
						<br>
						<p class="description" style="color: var(--dashboard-text-secondary);">
							Submit up to 10,000 URLs per request (one per line).
							IndexNow supports batch submissions to notify multiple search engines at once.
						</p>
					</td>
				</tr>
			</table>

			<div style="margin-top: 20px;">
				<button type="button" id="metasync-bing-btn-send" name="metasync-bing-btn-send" class="button button-primary">
					<span class="dashicons dashicons-upload" style="margin-top:3px;font-size:15px;width:15px;height:15px;"></span> Submit to IndexNow
				</button>
			</div>
		</div>

		<div class="dashboard-card" id="metasync-bing-response" style="display: none;">
			<h2>Submission Response</h2>
			<div class="result-wrapper" style="background: rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 20px; margin-top: 16px;">
				<code class="result-urls" style="color: var(--dashboard-accent); font-weight: 600; display: block; margin-bottom: 12px;"></code>
				<h4 class="result-status-code" style="color: var(--dashboard-text-primary); margin: 12px 0;"></h4>
				<p class="result-message" style="color: var(--dashboard-text-secondary);"></p>
			</div>
		</div>

		<div class="dashboard-card">
			<h2>About IndexNow Submission</h2>
			<p style="color: var(--dashboard-text-secondary); margin-bottom: 15px;">
				IndexNow is a simple protocol that notifies search engines when your content has been created, updated, or deleted.
			</p>
			<ul style="color: var(--dashboard-text-secondary); margin-left: 20px; margin-bottom: 15px;">
				<li>✓ Submit URLs to Bing, Yandex, Naver, and other participating search engines</li>
				<li>✓ Instant notification (no waiting for crawlers)</li>
				<li>✓ No status checking required - submission is fire-and-forget</li>
				<li>✓ No quotas for typical usage</li>
			</ul>
		</div>

		<div class="dashboard-card">
			<h2>Bing Webmaster Tools</h2>
			<p style="color: var(--dashboard-text-secondary); margin-bottom: 15px;">
				Monitor your IndexNow submissions and track your site's performance in Bing search results.
			</p>
			<p style="color: var(--dashboard-text-secondary); margin-bottom: 15px;">
				After submitting URLs via IndexNow, you can view submission history, indexing status, and detailed analytics in Bing Webmaster Tools.
			</p>
			<a href="https://www.bing.com/webmasters" target="_blank" rel="noopener noreferrer" class="button button-secondary" style="margin-bottom: 10px;">
				<span class="dashicons dashicons-external" style="margin-top:3px;font-size:15px;width:15px;height:15px;"></span> Open Bing Webmaster Tools
			</a>
			<p class="description" style="color: var(--dashboard-text-secondary); margin-top: 15px;">
				<strong>Note:</strong> Make sure your site is verified in Bing Webmaster Tools to see submission analytics and indexing reports.
			</p>
		</div>
	</form>


```
