/ Published in: PHP
Add this snippet to the functions.php to add 'Donate' Button on your Wordpress Website.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// paypal donate button function cwc_donate_shortcode( $atts ) { 'text' => 'Make a donation', 'account' => 'REPLACE ME', 'for' => '', ), $atts)); global $post; return '<a class="donateLink" href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business='.$account.'&item_name=Donation+for+'.$for.'">'.$text.'</a>'; } add_shortcode('donate', 'cwc_donate_shortcode');