Description : WordPress plugin allowing the use of php scripts (logic) inside WordPress posts and pages. Prefect for calling a special form, tracking logic, external gallery, or something more complex.
Installation : Place the folder (and scripts) inside your the WordPress plugins folder. Once uploaded, activate the plugin. Finished!
Usage : In the content editor of worpress place something like :
iz_custom_script=/path/to/script.php=
Where “iz_custom_script” triggers the the plugin. The text between the = (equal) signs is the patch to the custom script.
Warning : This plugin uses OB (output buffering). If you have extremely high page calls or a weak box you may want to cache this data and call a static result or migrate the script inclusion to a meta-key (WordPress). The advantage to iz_custom_script over using meta-keys is simple. iz_custom_script is placed in the content editor at any position and the content is returned with the script added inline with the content. Meta-keys allow for inclusion above and below the content. So, in order to place custom scripts in the content we must buffer the output. (OB)