Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Plugins
    In reply to: WordPress Wap

    if you get the no-such-article error edit wp-wap.php and replace
    <?php if(empty($_GET['p'])) { gmz_get_recentposts(); } else {?>
    <?php if (have_posts()) : ?>
    with <?php if(empty($_GET['p'])) { gmz_get_recentposts(); } else {
    query_posts('p='.$_GET['p']);
    ?>
    <?php if (have_posts()) : ?>

Viewing 1 replies (of 1 total)