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

Add class attribute in Custom Post Type

programmeradmin0浏览0评论

I'm using CPT library and I don't understand how can I add the class attribute on a single input field, I create all the post input as array item:

array( 
    'label' => esc_html__( 'Property Structure Type', 'zoacres' ),
    'desc'  => esc_html__( 'Choose related structure type of this property. You can manage property structure type settings at Theme Options -> Property Settings -> Property General -> Property Structure Types', 'zoacres' ), 
    'id'    => $prefix.'structures',
    'tab'   => esc_html__( 'Property Details', 'zoacres' ),
    'type'  => 'text',
    'options'   => $property_structures_arr,
    'attributes' => array(
         'class' => 'main-container'
     )
),

essentially the code above create a text field, but I want add the class main-container to that input, seems that attributes is not the way to achieve this.

What I did wrong?

official documentation: .5.0/package-CPTUI.Taxonomies.html

发布评论

评论列表(0)

  1. 暂无评论