PluginProbe
AWSM Team – Team Showcase Plugin / 1.0
AWSM Team – Team Showcase Plugin v1.0
trunk 1.0 1.1 1.1.2 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4
awsm-team / templates / table.php

table.php in AWSM Team – Team Showcase Plugin 1.0, at templates/table.php

47 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div id="<?php echo $this->add_id(array('awsm-team',$id));?>" class="awsm-grid-wrapper">
2 <?php if ($team->have_posts()): ?>
3 <div class="awsm-table <?php echo $this->item_style($options);?>">
4 <div class="awsm-table-row awsm-table-head">
5 <div class="awsm-table-cell">
6 <?php _e('Image'); ?>
7 </div><!-- .awsm-table-cell -->
8 <div class="awsm-table-cell">
9 <?php _e('Name'); ?>
10 </div><!-- .awsm-table-cell -->
11 <div class="awsm-table-cell">
12 <?php _e('Designaion'); ?>
13 </div><!-- .awsm-table-cell -->
14 <div class="awsm-table-cell">
15 <?php _e('Short Description'); ?>
16 </div><!-- .awsm-table-cell -->
17 <div class="awsm-table-cell">
18 <?php _e('Social Links'); ?>
19 </div><!-- .awsm-table-cell -->
20 </div>
21 <?php
22 while ($team->have_posts()): $team->the_post();
23 $teamdata = $this->get_options('awsm_team_member', $team->post->ID);
24 ?>
25 <div id="<?php echo $this->add_id(array('awsm-member',$id,$team->post->ID));?>" class="awsm-table-row">
26 <div class="awsm-table-cell awsm-table-image">
27 <div class="awsm-table-img-holder">
28 <img src="<?php echo $this->team_thumbnail($team->post->ID);?>" alt="<?php the_title();?>">
29 </div><!-- .awsm-img-holder -->
30 </div><!-- .awsm-table-cell -->
31 <div class="awsm-table-cell awsm-table-name">
32 <div class="awsm-table-cell-inner"><?php the_title(); ?></div>
33 </div><!-- .awsm-table-cell -->
34 <div class="awsm-table-cell awsm-table-designation">
35 <div class="awsm-table-cell-inner"><?php $this->checkprint('%s', $teamdata['awsm-team-designation']);?></div>
36 </div><!-- .awsm-table-cell -->
37 <div class="awsm-table-cell awsm-table-description">
38 <div class="awsm-table-cell-inner"><?php $this->checkprint('<p>%s</p>', $teamdata['awsm-team-short-desc']);?></div>
39 </div><!-- .awsm-table-cell -->
40 <div class="awsm-table-cell">
41 <?php include( $this->settings['plugin_path'].'templates/partials/social.php' ); ?>
42 </div><!-- .awsm-table-cell -->
43 </div><!-- .awsm-table-row -->
44 <?php endwhile; wp_reset_postdata();?>
45 </div>
46 <?php endif;?>
47 </div>