这是抄本:
<?php if ( get_post_meta($post->ID, \'thumb\', true) ) : ?>
<a href="<?php the_permalink() ?>" rel="bookmark">
<img class="thumb" src="<?php echo get_post_meta($post->ID, \'thumb\', true) ?>" alt="<?php the_title(); ?>" />
</a>
<?php endif; ?>
我想包括一个类似上面示例的if语句。但我想不出正确的方法来解决以下问题:
<?php // Set and display custom field
$mainbar_left_title = get_post_meta($post->ID, \'Mainbar Left Title\', true);
$mainbar_left_image = get_post_meta($post->ID, \'Mainbar Left Image\', true); ?>
<div class="float-left">
<h2><?php echo $mainbar_left_title; ?></h2>
<img src="<?php echo $mainbar_left_image ?>" alt="" />
</div> <?php
?>