根据需要创建更多Meta Box

时间:2011-06-12 作者:Picard102

我希望用户能够根据需要创建和删除其他元框字段。

例如,假设一个音乐播客每集播放的歌曲数量可变。用户应该能够单击一个按钮,根据需要添加其他字段以输入每首歌曲。

理想情况下,这将在不使用插件的情况下完成,但编码到函数文件中。

2 个回复
最合适的回答,由SO网友:Bainternet 整理而成

你是说这样的事?

enter image description here

当您单击“添加曲目”时,它会变成:

enter image description here

如果您的意思是its通过创建一个元盒来完成,该元盒具有简单的jquery函数来添加和删除其中的字段,并且数据保存为单个元行中的数据数组,那么您可以:

  add_action( \'add_meta_boxes\', \'dynamic_add_custom_box\' );

    /* Do something with the data entered */
    add_action( \'save_post\', \'dynamic_save_postdata\' );

    /* Adds a box to the main column on the Post and Page edit screens */
    function dynamic_add_custom_box() {
        add_meta_box(
            \'dynamic_sectionid\',
            __( \'My Tracks\', \'myplugin_textdomain\' ),
            \'dynamic_inner_custom_box\',
            \'post\');
    }

    /* Prints the box content */
    function dynamic_inner_custom_box() {
        global $post;
        // Use nonce for verification
        wp_nonce_field( plugin_basename( __FILE__ ), \'dynamicMeta_noncename\' );
        ?>
        <div id="meta_inner">
        <?php

        //get the saved meta as an array
        $songs = get_post_meta($post->ID,\'songs\',false);

        $c = 0;
        if ( count( $songs ) > 0 ) {
            foreach( $songs as $track ) {
                if ( isset( $track[\'title\'] ) || isset( $track[\'track\'] ) ) {
                    printf( \'<p>Song Title <input type="text" name="songs[%1$s][title]" value="%2$s" /> -- Track number : <input type="text" name="songs[%1$s][track]" value="%3$s" /><span class="remove">%4$s</span></p>\', $c, $track[\'title\'], $track[\'track\'], __( \'Remove Track\' ) );
                    $c = $c +1;
                }
            }
        }

        ?>
    <span id="here"></span>
    <span class="add"><?php _e(\'Add Tracks\'); ?></span>
    <script>
        var $ =jQuery.noConflict();
        $(document).ready(function() {
            var count = <?php echo $c; ?>;
            $(".add").click(function() {
                count = count + 1;

                $(\'#here\').append(\'<p> Song Title <input type="text" name="songs[\'+count+\'][title]" value="" /> -- Track number : <input type="text" name="songs[\'+count+\'][track]" value="" /><span class="remove">Remove Track</span></p>\' );
                return false;
            });
// The live() method was deprecated in jQuery version 1.7, and removed in version 1.9. Use the on() method instead. We can use .on
            $(".remove").live(\'click\', function() {
                $(this).parent().remove();
            });
        });
        </script>
    </div><?php

    }

    /* When the post is saved, saves our custom data */
    function dynamic_save_postdata( $post_id ) {
        // verify if this is an auto save routine. 
        // If it is our form has not been submitted, so we dont want to do anything
        if ( defined( \'DOING_AUTOSAVE\' ) && DOING_AUTOSAVE ) 
            return;

        // verify this came from the our screen and with proper authorization,
        // because save_post can be triggered at other times
        if ( !isset( $_POST[\'dynamicMeta_noncename\'] ) )
            return;

        if ( !wp_verify_nonce( $_POST[\'dynamicMeta_noncename\'], plugin_basename( __FILE__ ) ) )
            return;

        // OK, we\'re authenticated: we need to find and save the data

        $songs = $_POST[\'songs\'];

        update_post_meta($post_id,\'songs\',$songs);
    }

SO网友:Elpie

这是通过自定义字段完成的,但决不能使用任何允许用户添加或删除元框的内容。这些文件直接写入数据库,因此如果您给用户这种控制,可能会给您的站点带来很多问题。对您来说,创建他们可能需要的最大数量的自定义字段,并让他们在不需要的地方留下一些空白,这样会安全得多。

这也是插件领域。函数文件是特定于主题的,而插件则用于应用于网站内容的函数,尤其是如果您希望无论使用哪个主题都可以使用该内容。

一些建议:

http://wordpress.org/extend/plugins/verve-meta-boxes/

http://wordpress.org/extend/plugins/more-fields/

结束

相关推荐

Getting metabox value?

我使用Wordpress参考中的代码制作了一个自定义元数据库:http://codex.wordpress.org/Function_Reference/add_meta_box<?php /* Define the custom box */ // WP 3.0+ // add_action(\'add_meta_boxes\', \'myplugin_add_custom_box\'); // backwards compatible