# wpremote/5.85/admin/components/header_top.php

The WP Remote WordPress Plugin, version 5.85. 23 lines.

- Page: https://pluginprobe.com/plugins/wpremote/5.85/code/admin/components/header_top.php
- Raw: https://pluginprobe.com/plugins/wpremote/5.85/raw/admin/components/header_top.php
- Modified: 2022-06-16T10:21:04+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/wpremote/5.85/code/admin/components/header_top.php#L10-L20`.

```php
<?php
	$plugin_slug = "wpremote";
	$plugin_logo = plugins_url("/../../img/wprlogo.svg", __FILE__);
	$title = "Manage hundreds of WordPress websites with half the effort";
	$header_logo_link = $this->getWebPage() . "/?utm_source=mc_plugin_lp_logo&utm_medium=logo_link&utm_campaign=mc_plugin_lp_header&utm_term=header_logo&utm_content=image_link";
?>
<div class="header-top">
	<div class="top-links">
		<span><a href="<?php echo esc_url("https://wordpress.org/support/plugin/" . $plugin_slug . "/reviews/#new-post"); ?>" target="_blank" rel="noopener noreferrer">
			Leave a Review
		</a></span>
		&nbsp;
		<span><a href="<?php echo esc_url("https://wordpress.org/support/plugin/" . $plugin_slug . "/"); ?>" target="_blank" rel="noopener noreferrer">
			Need Help?
		</a></span>
	</div>
	<div class="logo-img">
		<a href="<?php echo esc_url($header_logo_link); ?>" target="_blank" rel="noopener noreferrer">
			<img height="65" src="<?php echo esc_url($plugin_logo); ?>" alt="Logo">
		</a>
	</div>
	<h2 class="text-center heading"><?php echo esc_html($title); ?></h2>
</div>
```
