如果在/ else语句中如何在PHP中添加CSS类?

时间:2017-09-11 05:26:43

标签: php css class if-statement

我编写了这段代码,将css类添加到帖子标题中。它适用于wordpress。我认为这是正确的代码,但没有工作

<h2><a  <?php if(get_post_meta(get_the_ID(),'hot',true) == 'on') { ?>class="hottitle" <?php } ?> title="<?php the_title_attribute(); ?>" href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>

但它不起作用。

2 个答案:

答案 0 :(得分:0)

使用三元运算符这样写。

$key_1_value = get_post_meta(get_the_ID(),'hot',true);
// Check if the custom field has a value.
<h2><a  <?php echo (! empty( $key_1_value )) ? 'class="hottitle"' : '';  ?> title="<?php echo get_the_title_attribute(); ?>" href="<?php echo get_the_permalink() ?>"><?php echo get_the_title(); ?></a></h2>

有关详细信息,请参阅此链接https://developer.wordpress.org/reference/functions/get_post_meta/

答案 1 :(得分:0)

<h2><a <?php=get_post_meta(get_the_ID(),'hot',true)=='on'?'class="hottitle"':''?> title="<?php=the_title_attribute();?>" href="<?php=the_permalink()?>"><?php=the_title()?></a></h2>