Last active
March 14, 2024 17:27
-
-
Save cliffordp/fe86cc09d5c6250453fc4c8ccf763e5b to your computer and use it in GitHub Desktop.
Shortcode: [copythis] write to clipboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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