fork download
  1. <?php $firstPost = 1; ?>
  2. <?php while( have_posts() ): the_post(); ?>
  3.  
  4. <?php if ( $firstPost == 1 ){ ?>
  5. <div class="full-width">
  6. <?php
  7. the_content();
  8. $firstPost = 5;
  9. ?>
  10. </div>
  11. <?php } else ?>
  12. <?php echo $firstPost; ?>
  13.  
  14. <?php endwhile; ?>
Runtime error #stdin #stdout #stderr 0.02s 26412KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Uncaught Error: Call to undefined function have_posts() in /home/zOfj3I/prog.php:2
Stack trace:
#0 {main}
  thrown in /home/zOfj3I/prog.php on line 2