<div class="entry-summary">

		<?php 
    the_excerpt();
    ?>



	<?php 
} else {
    ?>

	<div class="entry-content organizations-wrapper">

		<?php 
    write_sexy_organizationz();
    //			the_excerpt()
    //the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'zerif-lite' ) );
    ?>

		<?php 
    wp_link_pages(array('before' => '<div class="page-links">' . __('Pages:', 'zerif-lite'), 'after' => '</div>'));
    ?>


	<?php 
}
?>


示例#2
0
<?php

echo '<section class="testimonial" id="testimonials">';
echo '<div class="container">';
echo '<div class="section-header">';
$zerif_testimonials_title = get_theme_mod('zerif_testimonials_title', __('Testimonials', 'zerif-lite'));
if (!empty($zerif_testimonials_title)) {
    echo '<h2 class="white-text">FEATURED ORGANIZATION</h2>';
}
$zerif_testimonials_subtitle = get_theme_mod('zerif_testimonials_subtitle');
if (!empty($zerif_testimonials_subtitle)) {
    echo '<h6 class="white-text">' . __($zerif_testimonials_subtitle, 'zerif-lite') . '</h6>';
}
echo '</div>';
echo '<div class="row" data-scrollreveal="enter right after 0s over 1s">';
echo '<div class="col-md-12">';
echo '<div id="client-feedbacks" class="owl-carousel owl-theme">';
if (is_active_sidebar('sidebar-testimonials')) {
    dynamic_sidebar('sidebar-testimonials');
} else {
    write_sexy_organizationz(true);
}
echo '</div>';
echo '</div>';
echo '</div>';
echo '</div>';
echo '</section>';