Hello again,
I already duplicate content/content.php
to content/rilisan.php
and edit post type to match to match it, if ( 'post' == get_post_type() )
to if ( 'rilisan' == get_post_type() )
and result still same, only work on custom archive not for home archive.
But when i look at index.php
and edit <?php get_template_part( 'content/content', get_post_format() ); ?>
to <?php get_template_part( 'content/rilisan', get_post_format() ); ?>
result are normal post didn’t show post meta and custom post type show post meta.
Here picture, after editing index.php
![mantra1](https://i.ibb.co/47HqMmD/mantra1.png)
Is it possible to get multiple template part for home in index.php
?
So I can add default post and custom post content in content
folder.