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 |
By Santiago on March 27, 2009
You can easily add thumbnails, lead image, and other extras to individual posts in WordPress. These images can be shown on the front page, archives, search pages, etc – but appear outside of the content, giving you full control of their placement and style. What Are Custom Fields? If you’re reading through this article, there’s [...]
Posted in Tips & Tricks | Tagged Code, Custom Fields, How To, Posts, Thumbnails |
By Santiago on March 22, 2009
A useful code snippet that displays how many posts you’ve made.
Posted in Tips & Tricks | Tagged Code, How To, Posts, Snippet |