Hello,
I am quite new to wordpress/PHP development.
I want to createt custom tags the I can embedded in the html editor
and it will be replaced (only in rumtime) with other html/javascrip code.
for example:
<H1>Custom Tag Test</H1>
[mainTitle]
will be replaced in runtime with the code:
<H1>Custom Tag Test</H1>
<TABLE>
.....
</TABLE>
<SCRIPT>
getTitleText (....);
</SCRIPT>
Do I have to write a plugin ?
Is the another alternative ?
If I have to write a plugin - can I get an example of plugin that translate tag to code ?
Thanks,
Tomer