Ultrus
asked on
How do I convert '[download file="file.pdf"]File[/download]' into something else?
I'm making a wordpress plugin and want the writer to be able to place a bbcode like tag with an attribute that will be replaced with a form, then a link once the form is submitted.
[download file="http://mywebsite.com/theFile.pdf"]The File[/download]
I guess what would help the most right now is how would I convert what's above into:
Download: <a href="http://mywebsite.com/theFile.pdf">The File</a>
Any thoughts? I'm guessing this is a regex question.
Thanks for the assist. :)
[download file="http://mywebsite.com/theFile.pdf"]The File[/download]
I guess what would help the most right now is how would I convert what's above into:
Download: <a href="http://mywebsite.com/theFile.pdf">The File</a>
Any thoughts? I'm guessing this is a regex question.
Thanks for the assist. :)
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER