Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • We’re seeing this issue as well on blogs running WordPress 2.6.x and using Twitter Tools 1.2b1, 1.5b2 & 1.5b3 (on two different servers). Some were working before (using the old version 1.1b1) and just stopped updating while the others that started out as 1.5b2 installs have never pulled the Twitter posts and only return “No tweets available at the moment.”

    So, we’ve deactivated the plugin, went into the database and removed the wp_ak_twitter table, removed the “aktt_” rows from the wp_options table, reactivated Twitter Tools 1.1b1 and it is working again.

    While we hate to lose the new functionality of the 1.5 line, there’s something that’s not working correctly on our setup.

    Tal,

    This is currently used as a very basic display of all posts in a specific category and it is not always ideal to limit the posts or force it into a list.

    To set a limit of returned posts you’d change the ‘numberposts’ value and change the sort order accordingly.

    To force it into a list you’d change the code to something like:

    echo '<ul>';
    foreach( (array) $posts as $post ) {
    	echo '<li><a href="' . get_permalink($post->ID) . '">' . $post->post_title . '</a><br /></li>';
    }
    echo '</ul>';

    Brian

Viewing 2 replies - 1 through 2 (of 2 total)