Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法阻止 HTML 实体被渲染?
我的意思是我想要两行。首先是呈现实体的位置(例如&),在第二行,我希望拥有实体本身但不呈现(例如& - amp;)。
我不知道它是否有帮助,但我正在使用 WordPress 添加这两行。
逃脱&符号。例如,不是 将 & 号呈现为实体: .
 
根据您的示例,使用&.
&
只需在 php 中使用 htmlentities() 或 htmlspecialchars() wordpress 在 php.so 中即可使用这些函数: htmlspecialchars('your tags');