How to add post types in Frontier Theme Viewing 2 posts - 1 through 2 (of 2 total) Author Posts July 25, 2014 at 7:05 am #5747 EstebanGuest I want to add Post types: video, audio, etc What is the correct code to add this function? Thanks July 25, 2014 at 9:12 am #5750 RonKeymaster Add this on a child-theme functions.php function ra_add_post_types() { add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'audio', 'quote', 'link', 'gallery', ) ); } add_action( 'after_setup_theme', 'ra_add_post_types' ); Author Posts Viewing 2 posts - 1 through 2 (of 2 total) The forum ‘Frontier’ is closed to new topics and replies.