Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • I just got the BI0S TEAM banner on one of my sites this morning. What bothers me is that I don’t know how it happend, and nobody in this thread seems to know either. It’s easy to blame software versions for the attack, but does anyone even know if it was an exploit from an old version?

    This could still be an existing bug. If anyone has some information on how the “BI0S TEAM” is getting in, we should try and figure it out.

    My hosting service is a little behind on things, however…
    WordPress – 1.5.1.3
    PHP – 4.3.1
    Apache – 1.3.33

    Forum: Plugins
    In reply to: query posts

    I was wondering if Root was referring to a sticky, like a forum sticky. Unfortunately, I need something that looks more like a Page and separates itself from the posts.

    I agree adding a second loop complicates things, and it appears to be because the query object is not reusable. I’m still digging into WP and learning, but I plan on recommending this to the WP developers.

    Forum: Plugins
    In reply to: query posts

    My query ends with the endwhile you have. No php end like yours. Then into the loop.

    Sorry, I’m a little confused about what you’re trying to say. If you’re referring to the code <?php } ?> at the end, it belongs to the if(is_home()).

    Forum: Plugins
    In reply to: query posts

    I’m not familar with having a sticky, is this through a plugin?

    Here’s the code at the top of my index.php in the theme:


    <?php if (is_home() ) { ?>
    <?php $h_query = new WP_Query('pagename=home'); ?>

    <?php while ($h_query->have_posts()) : $h_query->the_post(); ?>
    //post code
    <?php endwhile; ?>

    <?php } ?>

    The code that displays the posts by default is the same below the code I added.

    Forum: Plugins
    In reply to: query posts

    I’m trying to display a page at the top of my home page and the posts as normal below. However, the navigation links disappear in almost any combination of adding a Page to the top of the home page (I’ve tried plugins and my own variations).

    I believe the problem is from calling the loop twice in the same page, which is not getting reset properly the second time thorugh. I even tried using my own WP query object. I did notice that the WP query object refers to a global post on the “the_post()” function. The use of globals in instance variables is what leads me to believe something isn’t getting reset properly.

    This is my first time into the guts of WordPress, and I haven’t gone too far to debug the problem. Before I do, I wanted to see if anyone else is seeing the same problem.

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