Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <div class="four_zero_four">
  2. <div class="four_zero_alert">
  3. <h1>404 <span>not found</span></h1>
  4. </div>
  5. <div class="four_zero_searchform">
  6. <p>We are sorry! Your search result without content for us site. You search many iteams from bleow</p>
  7. <form role="form">
  8. <input type="text" placeholder="Search here another keyword" autocomplete="off" class="form-control search_box">
  9. </form>
  10. </div>
  11. <div class="four_zero_upadate_keyword">
  12. <div class="row">
  13. <div class="col-md-6">
  14. <h2>Update Post</h2>
  15. <?php
  16. global $post;
  17. $args = array( 'posts_per_page' => 8, 'post_type'=> 'post');
  18. $myposts = get_posts( $args );
  19. foreach( $myposts as $post ) : setup_postdata($post); ?>
  20. <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  21. <?php endforeach; ?>
  22. </div>
  23.  
  24.  
  25.  
  26. <div class="col-md-6">
  27. <h2>Update Page</h2>
  28. <?php
  29. global $post;
  30. $args = array( 'posts_per_page' => 8, 'post_type'=> 'page');
  31. $myposts = get_posts( $args );
  32. foreach( $myposts as $post ) : setup_postdata($post); ?>
  33. <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  34. <?php endforeach; ?>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement