Will renaming a `content.php` file cause any problems?
There shouldnt be any issue, dont forget to change the slug in the template part call: get_template_part( ‘format’, get_post_format() ); the best practice is to have them in their own folder: get_template_part( ‘template-parts/post/format’, get_post_format() ); you can see the folder structure of twentyseventeen just change content respectively. How get_template will work: get_template_part will do a … Read more