I'm working with a WordPress theme named Realty. Everything is looking good except that I cannot reference images using the img tag. Below is what I get:
<img src=\"
http://domain.com/wp-content/themes/realty/images/realtor.jpg\" />
As you can see the double quotes are getting escaped. I was reading about this issue and a fix is to turn the following parameters off:
magic_quotes_gpc Off Off
magic_quotes_runtime Off Off
magic_quotes_sybase Off Off
..And they are off in the phpinfo.php page.
Please let me know what I need to do to be able to use the img tag and the image to show in a browser.
thx!