Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes/seo/
?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes
<?php
$seo_meta_box = edgtf_quadric_create_meta_box(
array(
'scope' => array('page', 'portfolio-item', 'post'),
'title' => esc_html__( 'SEO', 'quadric' ),
'name' => 'seo-meta'
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_meta_title_meta',
'type' => 'text',
'default_value' => '',
'label' => esc_html__( 'Meta Title', 'quadric' ),
'description' => esc_html__( 'Enter custom title for this page', 'quadric' ),
'parent' => $seo_meta_box
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_meta_keywords_meta',
'type' => 'text',
'default_value' => '',
'label' => esc_html__( 'Meta Keywords', 'quadric' ),
'description' => esc_html__( 'Add relevant keywords separated with commas', 'quadric' ),
'parent' => $seo_meta_box
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_meta_description_meta',
'type' => 'text',
'label' => esc_html__( 'Meta Description', 'quadric' ),
'description' => esc_html__( 'Enter meta description for this page', 'quadric' ),
'parent' => $seo_meta_box
)
);