Amazing wordpress Tags description Page

http://www.dbswebsite.com/design/wordpress-reference/V3/

WordPress simple tips, advance functionability.

I will UPDATE this post every time i discover a new one!

  1. Count system for post in wordpress

    This will create automatically a new Custom Field for your post count, called “count_page_hits”. If you want to know how to display them visit: http://codex.wordpress.org/Custom_Fields

    function count_page_hits() {
     if(is_single()) {
       global $post;
       $count = get_post_meta($post->ID, 'count_page_hits', true);
       $newcount = $count + 1;
    
       update_post_meta($post->ID, 'count_page_hits', $newcount);
     }
    }
    add_action('wp_head', 'count_page_hits');

    Source: Bavotasan.com

Have you tried PressWork?

I just was hearing Matt Mullenweg (“new caveman look..”) talking about a new wordpress framework called PressWork, so then i tried, if you want to create pages really easy to customize for your clients, i recommend this, you MUST to see it, it’s quite impressive, althoug the idea its not new, first it was develop by PageLines

Visit: PressWork, PageLines

Multiple WordPress Loops Examples

An awesome tutorial, with good examples about WordPress Loops:
Visit: WPVIBE.COM

How and when to use Jquery opacity animations

Explanation about how each method works:

Source: Catchmyfame

A Playground for web developers

If you like to build snippets or just play with javascript go and try JSFIDDLE

Visit: JSFIDDLE.NET

Jquery caching and chaining

Cooming soon!..