示例#1
0
                                        </a>
                                    </li>
                                </ul>
                        </div>
                    </div><!--/row-->
                </div><!--/container-->    
                <div><!--about-->

                    <div class="col-md-8"><!--about text-->
                    <?php 
echo get_the_excerpt();
?>

                    <?php 
$aboutquery = new WP_Query(array('name' => 'about', 'post_type' => 'page'));
echo $aboutquery->get_the_title();
while ($aboutquery->have_posts()) {
    $aboutquery->the_post();
    ?>
                        <h2><a href="<?php 
    the_permalink();
    ?>
"><?php 
    the_title();
    ?>
</a></h2>
                        <?php 
    echo the_excerpt();
    ?>

                    <?php