/home/desid573/verdenaturopathy.com.au/site3/wp-content/plugins/alx-extensions/inc
Edit: /home/desid573/verdenaturopathy.com.au/site3/wp-content/plugins/alx-extensions/inc/post-formats.php (1274B)
'format-audio',
'title' => esc_html__( 'Format: Audio', 'alx' ),
'post_types' => array( 'post' ),
'context' => 'advanced',
'priority' => 'high',
'autosave' => false,
'fields' => array(
array(
'id' => $prefix . 'audio_url',
'type' => 'text',
'name' => esc_html__( 'Audio URL', 'alx' ),
),
),
);
}
if ( get_theme_mod( 'alx-meta-box-video', 'on' ) == 'on') {
/* Format: video
/* ------------------------------------ */
$meta_boxes[] = array(
'id' => 'format-video',
'title' => esc_html__( 'Format: Video', 'alx' ),
'post_types' => array( 'post' ),
'context' => 'advanced',
'priority' => 'high',
'autosave' => false,
'fields' => array(
array(
'id' => $prefix . 'video_url',
'type' => 'text',
'name' => esc_html__( 'Video URL', 'alx' ),
),
),
);
}
return $meta_boxes;
}
add_filter( 'rwmb_meta_boxes', 'alx_ext_post_formats_meta_box', 11 );