Created
June 25, 2015 08:08
-
-
Save kurudrive/0506bcbf4587ff956318 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Template Name: 採用情報 | |
*/ | |
get_header(); ?> | |
<!-- [ #container ] --> | |
<div id="container" class="innerBox"> | |
<!-- [ #content ] --> | |
<div id="content" class="content"> | |
<?php | |
/*-------------------------------------------*/ | |
/* info | |
/*-------------------------------------------*/ | |
global $biz_vektor_options; | |
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; | |
$loop = new WP_Query( array( 'post_type' => 'info', 'paged' => $paged ) ); ?> | |
<?php if ($loop->have_posts()) : ?> | |
<div class="infoList"> | |
<?php | |
if ( isset($biz_vektor_options['listInfoTop']) && $biz_vektor_options['listInfoTop'] == 'listType_set' ) { ?> | |
<?php while ( $loop->have_posts() ) : $loop->the_post();?> | |
<?php get_template_part('module_loop_post2'); ?> | |
<?php endwhile ?> | |
<?php } else { ?> | |
<ul class="entryList"> | |
<?php while ( $loop->have_posts() ) : $loop->the_post();?> | |
<?php get_template_part('module_loop_post'); ?> | |
<?php endwhile; ?> | |
<?php } ?> | |
</div><!-- [ /.infoList ] --> | |
<?php pagination(); ?> | |
<?php endif; // if ($loop->have_posts()) : | |
wp_reset_query(); ?> | |
<?php do_action('biz_vektor_snsBtns'); ?> | |
<?php do_action('biz_vektor_fbComments'); ?> | |
<?php do_action('biz_vektor_fbLikeBoxDisplay'); ?> | |
</div> | |
<!-- [ /#content ] --> | |
<!-- [ #sideTower ] --> | |
<div id="sideTower" class="sideTower"> | |
<?php get_sidebar('page'); ?> | |
</div> | |
<!-- [ /#sideTower ] --> | |
<?php biz_vektor_sideTower_after();?> | |
</div> | |
<!-- [ /#container ] --> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment