Post formats
-
Hi,
I want to change formats (post format) to media.
I added the code – like you suggest.
my child theme functions.php now looks like this:
<?php/**
* Child Theme
*
*/function crocal_child_theme_setup() {
}
add_action( ‘after_setup_theme’, ‘crocal_child_theme_setup’ );
function my_prefix_rename_taxonomies_skipped_keys( $taxonomy_keys ) {
return array(
‘link_category’,
‘nav_menu’,
‘post_format’,
);
}
add_filter( ‘rename_taxonomies_skipped_keys’, ‘my_prefix_rename_taxonomies_skipped_keys’ );//Omit closing PHP tag to avoid accidental whitespace output errors.
but it’s still not showing up the additional taxonomies.
could you please advise – am I doing something wrong?
The page I need help with: [log in to see the link]
- The topic ‘Post formats’ is closed to new replies.