Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes/testimonials/
?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes
<?php
//Testimonials
$testimonial_meta_box = edgtf_quadric_create_meta_box(
array(
'scope' => array('testimonials'),
'title' => esc_html__( 'Testimonial', 'quadric' ),
'name' => 'testimonial-meta'
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_testimonial_title',
'type' => 'text',
'label' => esc_html__( 'Title', 'quadric' ),
'description' => esc_html__( 'Enter testimonial title', 'quadric' ),
'parent' => $testimonial_meta_box,
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_testimonial_author',
'type' => 'text',
'label' => esc_html__( 'Author', 'quadric' ),
'description' => esc_html__( 'Enter author name', 'quadric' ),
'parent' => $testimonial_meta_box,
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_testimonial_author_position',
'type' => 'text',
'label' => esc_html__( 'Job Position', 'quadric' ),
'description' => esc_html__( 'Enter job position', 'quadric' ),
'parent' => $testimonial_meta_box,
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_testimonial_text',
'type' => 'text',
'label' => esc_html__( 'Text', 'quadric' ),
'description' => esc_html__( 'Enter testimonial text', 'quadric' ),
'parent' => $testimonial_meta_box,
)
);