Advertisement
Guest User

Untitled

a guest
Nov 14th, 2022
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying all pages.
  4. *
  5. * This is the template that displays all pages by default.
  6. * Please note that this is the WordPress construct of pages
  7. * and that other 'pages' on your WordPress site will use a
  8. * different template.
  9. * @package Pure_and_Simple
  10. * @since 1.0.0
  11. * Template Name: stellenmarkt
  12. */
  13.  
  14. get_header( 'subpage' ); ?>
  15.  
  16.  
  17. <div class="container">
  18. <div class="row">
  19.  
  20. <div class="col-md-9">
  21. <article id="post-665" class="post-665 page type-page status-publish has-post-thumbnail hentry">
  22. <div class="entry-header">
  23. <h1 class="entry-title">Offene Stellen</h1>
  24. </div>
  25. </article>
  26. <?php query_posts('cat=4&showposts=8');?>
  27. <?php while (have_posts()) : the_post();?>
  28. <?php get_template_part( 'content' ); ?>
  29. <?php endwhile; // end of the loop. ?>
  30. </div>
  31.  
  32.  
  33. <div class="col-md-3">
  34. <?php get_sidebar( 'offene-stellen' ); ?>
  35. </div>
  36.  
  37. </div>
  38. </div>
  39.  
  40. <?php get_footer(); ?>
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement