Adding Post Formats to Twenty Twelve Child Theme
-
I have a child theme of the Twenty Twelve theme.
I followed the instructions on the codex at https://codex.www.ads-software.com/Post_Formats#Formats_in_a_Child_Theme
..but when I included the following code in the child theme’s functions.php file, it didn’t work
add_action( 'after_setup_theme', 'childtheme_formats', 11 ); function childtheme_formats(){ add_theme_support( 'post-formats', array( 'aside', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video', 'audio' ) ); }
Does anybody know what else I can do?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Adding Post Formats to Twenty Twelve Child Theme’ is closed to new replies.