Image URLs

I currently I have images embedded on my page using “a” tags. I would to test changing the images locally but would also like them to have the full image url when the pages are uploaded.

Is it possible for it to look like this when it is uploaded:

<a href="https://website.com/image.jpg" />

but still be able to test the images locally when they are stored in the static folder?

If I’m understanding your question, the answer is yes. You could create a shortcode where you pass the image path, then return the absolute path, which will include your site base url. See absURL docs for examples.