Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Last active March 14, 2024 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cliffordp/fe86cc09d5c6250453fc4c8ccf763e5b to your computer and use it in GitHub Desktop.
Save cliffordp/fe86cc09d5c6250453fc4c8ccf763e5b to your computer and use it in GitHub Desktop.
Shortcode: [copythis] write to clipboard
<?php
// [copythis]This will be copied[/copythis]
// @link https://gist.github.com/cliffordp/fe86cc09d5c6250453fc4c8ccf763e5b This snippet.
add_shortcode( 'copythis', function( $atts, $content = null ) {
return sprintf(
'<div class="copythis">%s</div>
<button onclick="navigator.clipboard.writeText(this.previousElementSibling.textContent)">Copy This</button>',
$content);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment