0

我正在尝试向用户展示他们所在幻灯片的当前索引。使用 WP Alchemy,我可以获得所有标签和输入以正确显示它们的名称和值。但是,在尝试使用时the_index(),添加超过 2 张幻灯片后,我无法获得正确的索引来回显。

我已经删除了我所有的 javascript 以确保它不会与 jQuery 的.sortable(). 在第二张幻灯片之后,标签或输入之外的所有名称和索引都是:_homepage_slider[slides_2][1][handle]1。我需要做的任何事情,还是只能在输入和标签中工作?

<?php global $wpalchemy_media_access; ?>
<div class="my_meta_control">

    <?php while($mb->have_fields_and_multi('slides_2')): ?>
    <?php $mb->the_group_open(); ?>
    <table class="meta-field sortable table" cellspacing="0">
        <tr>
            <td width="30" class="handle"><?php $mb->the_index() //Only echoes '1' after the second iteration ?></td>
            <td width="280" class="imagefield">
                <?php $mb->the_field('imgurl'); ?>
                <?php $wpalchemy_media_access->setGroupName('img-n'. $mb->get_the_index())->setInsertButtonLabel('Insert'); ?>

                <img data-image="mediafield-img-n<?php $mb->the_index() ?>" src="<?php bloginfo('template_url') ?>/framework/images/cm-no-image.jpg" />

                <div class="media-field-input hide">
                <?php echo $wpalchemy_media_access->getField(array('name' => $mb->get_the_name(), 'value' => $mb->get_the_value())); ?>
                </div>

                <div class="add-media-btn">
                <?php echo $wpalchemy_media_access->getButton(); ?>
                </div>
            </td>

            <td class="last-col">
                <?php $mb->the_field('title'); ?>
                <label for="<?php $mb->the_name(); ?>">Title</label>
                <div><input type="text" id="<?php $mb->the_name(); ?>" name="<?php $mb->the_name(); ?>" value="<?php $mb->the_value(); ?>"/></div>

                <?php $mb->the_field('handle'); ?>
                <p>Name: <?php $mb->the_name(); //Only echoes _homepage_slider[slides_2][1][handle] after second iteration ?></p>
                <p>Index: <?php $mb->the_index(); //Only echoes '1' after second iteration ?></p>

                <a href="#" class="dodelete x-btn">Remove Slide</a>
            </td>

        </tr>
    </table><!-- /.meta-field -->
    <?php $mb->the_group_close(); ?>
    <?php endwhile; ?>

    <p style="margin-bottom:15px; padding-top:5px;"><a href="#" class="docopy-slides_2 button">Add</a></p>

</div>
4

1 回答 1

0

对于任何想知道的人,WP Alchemy 不是这样工作的。您可以将字段标识符添加到元素的名称、类、id 或值属性中。回显索引时,它前面需要一个“n”。

例如:

<?php $mb->the_field('handle'); ?>
<input type="hidden" class="anything-i-want-n<?php $mb->the_index() //This will work ?>" name="<?php $name = $mb->get_the_name() ?>" />
<?php echo $mb->the_index() //This will not ?>
于 2012-04-21T13:48:29.307 回答