最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

custom field - Adding text box with add_meta_box

programmeradmin1浏览0评论

This is my code:

$configuracoes = register_post_type( 'configuracoes', $args );

$configuracoes->add_meta_box(
    'dados',
    'Personalize os dados de impressão',
    array(
        'tabs',
        array(
            'Dados Pessoais' => array(
                array(
                        'name' => 'Série',
                        'label'=> 'Série',
                        'type' => 'text',
                        'underscore' => false
                    )
                ),
            'Dados Profissionais' => array(
                array(
                        'name' => 'Tempo de Profissão',
                        'label'=> 'Tempo de Profissão',
                        'type' => 'text',
                        'underscore' => false
                    ),
                )
        )
    )

This code generates this form:

How can I put in place of the input, a text box similar to the one on the page to add a new blog post for example?

发布评论

评论列表(0)

  1. 暂无评论