How to add rel=“lightbox” only to links which are including an image and not the rest of the links? [duplicate]
问题 This question already has answers here : How to add in every link (a href) tag a rel attribute with the help of php? [closed] (2 answers) Closed 5 years ago . Lets say that (in php) we have a variable which has text, links and images : <a href="myimage_big"><img src="myimage.jpg" alt="pic" title="pic" border="0" /></a> and we want to add to every a href tag the rel="light" as follow : <a rel="lightbox" href="myimage_big"><img src="myimage.jpg" alt="pic" title="pic" border="0" /></a> If the