Forum Replies Created

Viewing 2 replies - 31 through 32 (of 32 total)
  • Can anyone else tell me if this worked also. Instructions are a little murky. I have same problems and WP ecom install, where are the “terms” you refer to in the admin panel? By “removal all records in sql table ‘wp_terms’, do you mean one at a time in the SQL? — individually delete the entries in the terms table?

    Concerned I might screw up database…

    Thread Starter Larryhir

    (@larryhir)

    Correction
    The methods I showed above actually don’t link correctly. The links show up in order I choose in first example, in default order in the second example. In both cases, the links are messed up the main loop. I end up getting all sidebar links to pull the posts from the last of the three loops. Perhaps this is because these come before the main loop in the sidebars?

    The only method that does work, but shows descending order only, is:

    <?php query_posts('cat=8&showposts=3'); ?>
    <?php $posts = get_posts('category=8&numberposts=3&offset=0');
    foreach ($posts as $post) : start_wp(); ?>
    <?php the_title(); ?>
    <?php the_excerpt(); ?>
    <?php endforeach; ?>

    Hoping somebody must have a clue as to how to do this–much appreciation.

Viewing 2 replies - 31 through 32 (of 32 total)