Hello Tom!
I’m not sure I’m understanding you…
I’ve got single-myCPT.php file where I wrote this:
<?php get_template_part( 'content', 'standhouders' ); ?>
And I’ve got content-myCPT.php (copied from content-single) that’s called from the code above.
Now, I want to do the same with a file template (the archive file), so I’ve got the file archive-myCPT.php file that has this code by default:
get_template_part( 'content', get_post_format() );
So, If I want to modify the file template (copied from archive.php file) how can I do that?
I want to show not only the content but other custom fields in the archive page.
Hope I explained well…
Regards