adamo8888 Posted July 7, 2014 Share Posted July 7, 2014 Hi I would really appreciate some help. I am trying to structure some php to detect if a value is null, if it is not null i want it to print the value if null print nothing. so far all i have it doing is detecting whether it is null or not. but it is printing part of my code instead of the fields value. here is the code I have this is for a word press theme that I am modifying for my purpose. <td colspan="7" class="hideme"> '. (get_post_meta($post->ID,"_as_pros",true)!="" ? '(get_post_meta($post->ID,"_as_pros")' : '') .' </td> Quote Link to comment Share on other sites More sharing options...
Ch0cu3r Posted July 7, 2014 Share Posted July 7, 2014 Remove the quotes around the code highlighted in red <td colspan="7" class="hideme"> '. (get_post_meta($post->ID,"_as_pros",true)!="" ? '(get_post_meta($post->ID,"_as_pros")' : '') .' </td> Code within in single quotes, will not be parsed it will be treated as text. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.