Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes/post-format-quote/
?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes
<?php
/*** Quote Post Format ***/
$quote_post_format_meta_box = edgtf_quadric_create_meta_box(
array(
'scope' => array('post'),
'title' => esc_html__( 'Quote Post Format', 'quadric' ),
'name' => 'post-format-quote-meta'
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_post_quote_text_meta',
'type' => 'text',
'label' => esc_html__( 'Quote Text', 'quadric' ),
'description' => esc_html__( 'Enter Quote text', 'quadric' ),
'parent' => $quote_post_format_meta_box,
)
);