<a href="<?php 
the_permalink();
?>
">
         <?php 
if (has_post_thumbnail()) {
    ?>
           <?php 
    the_post_thumbnail($post->ID, 'responsive');
    ?>
         <?php 
} else {
    ?>
          <?php 
    agency_placeholder('portfolio');
    ?>
        <?php 
}
?>
      </a>
      <h3><a href="<?php 
the_permalink();
?>
"><?php 
the_title();
?>
</a></h3>
      
      <?php 
the_excerpt();
示例#2
0
    <section <?php 
post_class("_1");
?>
>
      <?php 
if (has_post_thumbnail()) {
    ?>
        <?php 
    the_post_thumbnail($post->ID, 'responsive');
    ?>
      <?php 
} else {
    ?>
        <?php 
    agency_placeholder('team');
    ?>
      <?php 
}
?>
      <h1><?php 
the_title();
?>
</h1>
      <?php 
agency_team_member_title($post->ID);
?>
      <div>
        <?php 
the_content();
?>
      </div>
function agency_team_members_home_list()
{
    $team_members = new WP_Query(array('post_type' => 'team', 'orderby' => 'rand', 'posts_per_page' => '4'));
    if ($team_members->have_posts()) {
        while ($team_members->have_posts()) {
            $team_members->the_post();
            ?>

      <div <?php 
            post_class("team-member _1-4");
            ?>
>
        <?php 
            $post_img = get_the_post_thumbnail(get_the_ID(), 'portfolio-grid');
            if ($post_img) {
                ?>
        <a href="<?php 
                the_permalink();
                ?>
"><?php 
                echo $post_img;
                ?>
</a>
        <?php 
            } else {
                ?>
        <a href="<?php 
                the_permalink();
                ?>
"><?php 
                agency_placeholder('team');
                ?>
</a>
        <?php 
            }
            ?>


        <h5><a href="<?php 
            the_permalink();
            ?>
"><?php 
            the_title();
            ?>
</a></h5>
        <?php 
            agency_team_member_title(get_the_id());
            ?>

      </div><!--/.team-member-->
  
    <?php 
        }
    }
}