我正在学习PHP并希望通过编写以下IF语句来询问它是否应该采用更合适的方式。一直在网上阅读它虽然现在找不到答案。
一般来说还需要添加ENDIF吗?
<?php if ( in_category( 'workshops' )) {
get_template_part( 'template-parts/content', 'workshops' );
} ?>
OR
<?php if ( in_category( 'workshops' )) : ?>
<?php get_template_part( 'template-parts/content', 'services' ); ?>
<?php endif ?>