Current File : /home/bqrcodec/contact.ancuong.com/wp-content/plugins/my-permalink-button//my-permalink-button.php
<?php
/*
Plugin Name: My Permalink Button
Description: Adds a button shortcode to copy the current post permalink.
*/
// Register the shortcode
function my_permalink_button_shortcode() {
// Get the current post's permalink
$permalink = get_permalink();
// Add the button HTML
$button_html = '<button onclick="copyToClipboard(this)" data-permalink="' . esc_attr($permalink) . '">' . esc_html__('Sao Chép Link Hồ Sơ') . '</button>';
// Add the JavaScript function to copy to clipboard
$js_code = '<script>
function copyToClipboard(button) {
const permalink = button.getAttribute("data-permalink");
const textArea = document.createElement("textarea");
textArea.value = permalink;
document.body.appendChild(textArea);
textArea.select();
document.execCommand("copy");
document.body.removeChild(textArea);
alert("Copied link hồ sơ to clipboard!");
}
</script>';
// Return the button and JavaScript code
return $button_html . $js_code;
}
add_shortcode('my_permalink_button', 'my_permalink_button_shortcode');