Linux 软件免费装

PHP Code Widget

开发者 Otto42
更新时间 2022年3月31日 00:55
PHP版本: 2.8 及以上
WordPress版本: 5.9
版权: GPLv2
版权网址: 版权信息

标签

widget php execphp

下载

2.4 1.2 1.1 2.0 2.1 2.2 2.3

详情介绍:

The normal Text widget allows you to insert arbitrary Text and/or HTML code. This allows that too, but also parses any PHP code in the text widget and executes it. This can make it easier to migrate to a widget-based theme. However, this plugin should not be used long term, as anybody with access to edit the widgets on your site will be able to execute arbitrary PHP code. All PHP code must be enclosed in the standard php opening and closing tags ( <?php and ?> ) for it to be recognized and executed. Only users with the unfiltered_html role will be allowed to insert unfiltered HTML. This includes PHP code, so users without admin or editor permissions will not be able to use this to execute code, even if they have widget editing permissions.

屏幕截图:

  • The widgets screen showing a PHP code widget in use.
  • The output of the widget on the site.

常见问题:

There's some kind of error on line 27!

That error means that your PHP code is incorrect or otherwise broken.

But my code is fine!

No, it's not. Really. This widget has no real errors in it, it's about the simplest widget one can possibly make. Any errors coming out of the "execphp.php" file are errors in code you put into one of the widgets. The reason that it shows the error being in the execphp.php file is because that is where your widget's code is actually being run. So, if it says that you have an error on line 27, I assure you, the problem is yours. Please don't email me about that error.

I have code that works normally in a template but doesn't work when in the widget?

Code in a template runs in the global context. Code in the widget will run in a function context. Make sure that you declare any global variables as global before attempting to use them.

更新日志:

2.4 2.3 2.2 2.1 2.0