[ad_1]
Hi @pedroumu,
You can display post category in posts list by copying template-parts/meta/entry-meta-bottom.php file into your child theme (keeping subfolder structure) and adding get_template_part( 'template-parts/meta/entry-meta-element', 'category' ); at line number 42 so it becomes:
if ( is_single( get_the_ID() ) ) {
get_template_part( 'template-parts/meta/entry-meta-element', 'tags' );
} else {
get_template_part( 'template-parts/meta/entry-meta-element', 'date' );
get_template_part( 'template-parts/meta/entry-meta-element', 'comments' );
get_template_part( 'template-parts/meta/entry-meta-element', 'author' );
get_template_part( 'template-parts/meta/entry-meta-element', 'category' );
}Please note that I provide support via
Best regards,
Oliver
