示例#1
0
<?php

if (have_rows('build_title')) {
    ?>
    <span class="complex-title">
        <?php 
    while (have_rows('build_title')) {
        the_row();
        ?>
                <span class="<?php 
        ct_group_classes();
        ?>
">
                    <?php 
        ct_template('element', get_post_type());
        ?>
    
                </span>

        <?php 
    }
    ?>
    </span>
<?php 
}
 /**
  * Build the shortcode, call templates
  */
 function acfct_title()
 {
     ob_start();
     ct_template('group', get_post_type());
     return ob_get_clean();
 }