• Sociable is broken here:

    line 735 of sociable.php

    $post = $wp_query->post;

    You CANNOT get another $post when you’re using the global $post.

    This leaves people who have multiple loops on their theme screwed.

    it needs to be removed, everything will work fine without it since your getting the global already.

    // $post = $wp_query->post;

    http://wordpress.org/extend/plugins/sociable/

  • The topic ‘Sociable $post = $wp_query->post; FLAW.’ is closed to new replies.