• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.

Search results

  1. A

    RESOLVED Is it possible to Run Snippet inside img src?

    Ugh — I'm embarrassed! You are right, it does work. I just realized my mistake: I forgot to upload the file in the directory I was referencing. Sorry!
  2. A

    RESOLVED Is it possible to Run Snippet inside img src?

    Thanks for the reply Temyk. I forgot to mention that the snippet is placed inside a post so it won't run php code (which is why I wanted to use WS in the first place!). I used to use [insertphp] in an older website I have and I could run that old plugin but that's not the best practice.
  3. A

    RESOLVED Is it possible to Run Snippet inside img src?

    Hi, I have a snippet that contains the path to my image folder on my server: <?php $url = site_url( '/', 'https' );echo $url; ?> If I use the snippet on its own it does work but when I try to use it like below, it doesn't work — the img src outputs the snippet itself. How can I use a snippet...