# maxbuttons/6.26.1/includes/social-share.php

MaxButtons – Create buttons, version 6.26.1. 26 lines.

- Page: https://pluginprobe.com/plugins/maxbuttons/6.26.1/code/includes/social-share.php
- Raw: https://pluginprobe.com/plugins/maxbuttons/6.26.1/raw/includes/social-share.php
- Modified: 2018-01-08T10:10:00+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/maxbuttons/6.26.1/code/includes/social-share.php#L10-L20`.

```php
<?php
		$action = 'install-plugin';
		$slug = 'share-button';
		$url = wp_nonce_url(
			add_query_arg(
				array(
				    'action' => $action,
				    'plugin' => $slug
				),
				admin_url( 'update.php' )
			),
			$action.'_'.$slug
		);
?>


<div class='social-share-move option-container'>
	<div class='inside'>
		<h3>MaxButtons Social Share is moving </h3>

		<p>We created a brand new plugin to make your Social Share experiences better. </p>

		<p><a href='<?php echo $url ?>' class='button-primary large '>Get it here </a></p>
	</div>
</div>

```
