【发布时间】:2019-07-15 14:04:43
【问题描述】:
我想要在 WordPress 中允许发布元条件的代码。例如,如果帖子具有元键“视频”,它将用元键替换特色图像;否则会显示特色图片。
特色图片代码:
<?php $image_ratio_case = my_image_ratio_case('1x'); do_action('my_thumbnail', 'my_thumb_16x9_0x', 'class-16x9', 1, NULL, $image_ratio_case);?>
元邮政编码:
<video autoplay loop muted width="100%" height="auto" src="<?php echo esc_html( get_post_meta( get_the_ID(), 'Video', true ) ); ?>"></video>
【问题讨论】:
-
你试过什么?你被困在哪里了?
-
我想要类似 if{ else { 的功能