View difference between Paste ID: DEYwdnCt and DfUYy80J
SHOW: | | - or go back to the newest paste.
1-
cat template-jobs.php 
1+
2
/*
3
Template Name: Jobs Template
4
*/
5
?>
6
<title><?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title> 
7-
<title><?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title> <?php wp_head(); ?>
7+
<?php 
8-
8+
wp_head();
9-
<?php while (have_posts()) : the_post(); ?>
9+
while (have_posts()) : the_post();
10-
  <?php get_template_part('templates/content', 'jobs'); ?>
10+
    echo do_shortcode('[jobs]');
11-
<?php endwhile; ?>
11+
endwhile; 
12
?>