By Santiago on April 15, 2009
The following are the plugins I found that can make WordPress more secure.
Posted in Useful Tools & Services | Tagged Plugins, Secure, Wordpress |
By Santiago on April 7, 2009
Are you using feedburner? Probably yes, just as a lot of bloggers do. If you don’t like the chicklet dedicated to display your feedburner count, just read this article which is a new method to get your feedburner count in text mode. To display your feedburner count in full text on your WordPress blog, simply [...]
Posted in Tips & Tricks | Tagged Code, Feedburner, How To |
By Santiago on April 1, 2009
function donate_shortcode( $atts ) { extract(shortcode_atts(array( ‘text’ => ‘Make a donation’, ‘account’ => ‘REPLACE ME’, ‘for’ => ”, ), $atts)); global $post; if (!$for) $for = str_replace(” “,”+”,$post->post_title); 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’, ‘donate_shortcode’); Replace the default ‘account’ with your paypal email address, and output using [donate]. Remember you can override the default ‘text’ [...]
Posted in Tips & Tricks | Tagged Code, How To, Snippet |