我想知道是否有可能在条件语句中有一个自定义字段
例如-
if ( is_page( \'about\' ) || \'29\' == $post->post_parent ) {
//custom field goes here
}
elseif ( is_page( \'contact\' ) || \'30\' == $post->post_parent ) {
//custom field goes here
}
以及要包含的自定义字段:
<?php while(has_sub_field(\'site_slideshows\',\'option\')): ?>
<div class="slideshow-slide" style="background-image:url(<?php the_sub_field(\'site_slideshows_slide_image\'); ?>)">
</div>
<?php endwhile; ?>
是否可以在条件标记中放置自定义字段?每个自定义字段显然会有所不同,这只是我想去做的一个示例
custom field goes here
. <如有任何建议,将不胜感激。