So I’m not even sure where to begin..
I’ve got a platform where people can post their own ‘generated’ blogs from other people.
It takes a bunch of info via a form action and outputs it to a wordpress blogpost format.
One of the fields in the body of the post contains this ” [word] ” without the quotes. (the word is different based on the input).
Is there a way I can turn [word] into something else (preferably a graphic) based on the the words? like… I dont know much about scripts and stuff, but I envision something like this…
if[word], output(‘wordimage.png’)instead.
Any way to do that
You are looking for str_replace(a, b); my friend.