Skip to content

Instantly share code, notes, and snippets.

@aimahdi
Created February 15, 2025 06:19
Show Gist options
  • Save aimahdi/663bb4a1b8245f0a4cbb72663316a398 to your computer and use it in GitHub Desktop.
Save aimahdi/663bb4a1b8245f0a4cbb72663316a398 to your computer and use it in GitHub Desktop.
add_action('custom_message', 'custom_message_callback', 10, 1);
function custom_message_callback($form) {
echo '<div class="custom-field-container">';
echo '<button type="button" onclick="alert(\'Custom message sent!\')">Send Message</button>';
echo '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment