Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I need opposite of this:

<?php if ( get_post_meta($post->ID, 'price_list_category1', true) )  : ?>style="display:none;"<?php endif; ?>

In other words I want style="display:none;" only when meta data doesn't exist.

I thought it would be straightforward like if ( get_post_meta($post->ID, 'price_list_category1', true but this true/false turns out to be a completely different stuff.

any ideas?

Thank you.

share|improve this question

1 Answer

up vote 0 down vote accepted

You could use the empty function inside your if as such :

<?php if( empty( get_post_meta( $post->ID, 'price_list_category1', true ) ) ) : ?>style="display:none;"<?php endif; ?>

The above returns an error, you should assign the return value to a variable. See my edit below.

Warning

empty might not be the best option depending on the values you store in the meta. Values like false, 0 etc... will be considered empty.

Check the PHP manual for the full list of values that are considered empty.

Edit

You can try assigning the meta to a variable, and using that in the if statement.

 <?php
      $price_list = get_post_meta( $post->ID, 'price_list_category1', true );
 ?>

And then...

 if( empty( $price_list) ) : ?>style="display:none"<?php endif; ?>
share|improve this answer
I tried this, it gives Fatal error: Can't use function return value in write context – Sandro Dzneladze Jun 26 '12 at 19:46
You could assign the meta return value to a variable and use that variable inside the if. See my edit. – Shane Jun 26 '12 at 19:53
it appears empty has limitations, and need plain variable to do its magic. one of those php limitations that make no sense. – Sandro Dzneladze Jun 27 '12 at 9:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.