编写这两个IF语句的正确方法是什么?

时间:2016-10-31 00:14:02

标签: php

我正在学习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 ?>

0 个答案:

没有答案