Site logo

Archived topic

How to display few meta (author & category only) on Pods custom post types?

1 reply · Started by Sascha on September 6, 2020

Viewing posts 1–2 of 2

Hi there,
I'd like to show the Author & Category on a single and archive of a CPT named "academy".
Do I have added this code to my Code Snippets:

add_filter( 'generate_entry_meta_post_types', function( $types ) {
    $types[] = 'academy';

    return $types;
} );

but it only shows "Release Date" & "Author".
How can I customize which meta will be shown and in which order?
Thank you and kind regards,
Sascha

This archived topic is closed to new replies.