PHP Execution Wordpress Plugin - Rating, Reviews, Demo & Download

 Wordpress Plugin - Rating, Reviews, Demo & Download
5 Average out of 3 ratings
Free
Follow for free plugins, new theme releases and theme news

Plugin Description

The PHP Execution Plugin is a WordPress plugin which allows users to write php code inside of their posts and pages. Embedded php code will be executed when the post is shown. In doing so, the plugin offers the possibility to utilize dynamic content inside of posts.

In contrast to other plugins with the same aim, this one integrates well with WordPress’ visual editor. So there is no need to turn off the visual editor in order to edit your php code.
Additionally it provides an admin section which lets administrators edit the blog users’ php execution rights easily. The plugin also automatically prevents users with no php execution rights from editing posts or pages of users with these rights. It thus fixes a possible security leak where people without php execution rights can still execute code with editing other users’ posts.

Features:

  • executes php code in your posts and pages (full, excerpts, feeds).
  • integrates well with WordPress’ visual editor. No need to turn it off.
  • write php code in the usual ” syntax in the html view of the editor.
  • admin section to edit the blog users’ php execution rights.
  • plugin automatically prevents users with no php execution rights to edit posts of users with rights to execute php code.

Project was now moved out of beta.

Further information at zehnet.de: PHP Execution Plugin home

Editing PHP code

  • php code can be edited in the html view of the editor.
  • php code is embedded into a post in the same way as you are used to: a php block begins with ”. The short open tag, i.e. ”) somewhere inside a string in your php code block. If you do so, this ending delimeter will be matched and your code will inevitably break apart. So don?t write e.g.:
    some text
    <?php $test = "hello ?>"  ?>
    more text
  • Writing ‘$test = “hello ?&gt;”‘ instead will not lead to any problems.
  • Php code is not executed in the global scope. If you need to gain access to variables in the global scope you need to “import” them first with ‘global $var1, $var2;’.
  • This plugin does not evaluate every single code snippet, but the content of the post as a whole. So the following lines won?t result in errors:
    <?php if ($test==true) { ?>
    The test was successful.
    <?php } else { ?>
    The test failed.
    <?php } ?>
  • When switching between html and visual view the php code is not altered in any case. All html tags, whitespaces etc. in your code are preserved.

Screenshots

  1. editing in html view

    editing in html view

  2. php code in the visual wysiwyg view

    php code in the visual wysiwyg view

  3. dragging php code snippets

    dragging php code snippets

  4. the admin section

    the admin section


Reviews & Comments