有人能告诉我正确的方向吗,我目前正在使用:
<?php if (get_the_time(\'H\') >= 8 && get_the_time(\'H\') < 20) : ?>
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/picture1.jpg" alt="randomalt2" />
<?php else : ?>
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/pictur2.jpg" alt="randomalt1" />
<?php endif; ?>
假设在一天中的特定时间改变图像,当前设置为早上8点,晚上8点(20)。
图片显示了,但它没有改变,我是否错过了什么?