帖子内容中的PHP标签让WordPress疯狂

时间:2016-11-19 作者:gzbuaapzroyn

我正在尝试插入PHP 在帖子内容中编写代码,但我刚刚意识到它会破坏Wordpress或一些插件。

例如

avoid any specific class naming structure or style.
<?php 

You can see this simple example at work in this CodePen demo. Resize the window to see the change take place.
所以在这种情况下You can see ... 不会渲染为输出。

如果php tag 是这样封闭的

  avoid any specific class naming structure or style.
    <?php 
    // Some code 
    ?>

    You can see this simple example at work in this CodePen demo. Resize the window to see the change take place.
我觉得这个案子一切正常。。。

我还尝试使用pre,codshortcodes, 但还是一样。

我正在使用最新版本的wordpress。也许有人已经遇到了这个问题。

谢谢

1 个回复
SO网友:JHoffmann

如果只想输出php代码而不执行它,只需转义< 通过将其替换为html实体进行签名&lt;.

&lt;?php
这样,标签将无法识别,并将输出为<?php.