I need to use function get_template_part()
to call some partial template files and they are conjunction of 4 or 5 words, so I have to decide whether I will join the multiple words without any separator but dashes(-) or I will use underscores as the separator.
i.e) postcat-masonrygrid2col
vs
post_cat-masonry_grid_2_col
Which way should I use for naming my template files? I prefer the former way to the latter if itโs okay to pass a theme review.