twilitegxa Posted June 12, 2011 Share Posted June 12, 2011 I'm trying to write a code that will basically say: If an image is present (<img src="image.jpg" />), leave formatting as is. But id there is no image present, display a 25px top margin. Is there a way to do this? It's actually for a Wordpress site I'm working on, and the posts section has the right formatting I want when I place an image at the beginning of the post, but if no image is posted, the spacing is screwed up. Can anyone help? Quote Link to comment https://forums.phpfreaks.com/topic/239170-if-statement-question/ Share on other sites More sharing options...
RussellReal Posted June 12, 2011 Share Posted June 12, 2011 why not use javascript for this? but, are you pulling this information in via like an include or file_get_contents.. basically what I'm asking, do you have access to the content before it is output? if so you can use preg_match to see if there is "<img" in the content.. if you don't have access to the content, than your best bet would be javascript. Quote Link to comment https://forums.phpfreaks.com/topic/239170-if-statement-question/#findComment-1228821 Share on other sites More sharing options...
twilitegxa Posted June 12, 2011 Author Share Posted June 12, 2011 Yes, I have access to the content before it is output. The code I will be using will go into a template that is used for all posts. Can you explain how I would do it please? Quote Link to comment https://forums.phpfreaks.com/topic/239170-if-statement-question/#findComment-1228822 Share on other sites More sharing options...
RussellReal Posted June 12, 2011 Share Posted June 12, 2011 well you could do it.. $hasImage = ((stripos($content,'<img') > -1)? true:false); or.. $hasImage = ((preg_match('/<img/i',$content))? true:false); Quote Link to comment https://forums.phpfreaks.com/topic/239170-if-statement-question/#findComment-1228824 Share on other sites More sharing options...
twilitegxa Posted June 12, 2011 Author Share Posted June 12, 2011 Okay, thanks very much for the help! Quote Link to comment https://forums.phpfreaks.com/topic/239170-if-statement-question/#findComment-1228825 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.