我想让代码在WordPress中允许发布元条件。例如,如果某条帖子的meta键为“视频”,它将用meta key替换特色图片;否则将显示精选图片。
特色图片代码:
<?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>
答案 0 :(得分:0)
由于您未提供任何提示,代码可以放置在哪里以及您的实际问题是什么,我只能给出此答案,希望这会有所帮助:)
if (is_array(get_post_meta( get_the_ID(), 'Video', true )) || is_string(get_post_meta( get_the_ID(), 'Video', true ))) {
//echo the video
} else {
//echo the img
}