允许使用';pre';标记在博客上编写代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了允许使用';pre';标记在博客上编写代码相关的知识,希望对你有一定的参考价值。

  1. //php-Code for functions.php
  2.  
  3. function pre_esc_html($content) {
  4. '#(<pre.*?>)(.*?)(< /pre>)#imsu',
  5. '$i',
  6. 'return $i[1].esc_html($i[2]).$i[3];'
  7. ),
  8. $content
  9. );
  10. }
  11.  
  12. add_filter(
  13. 'the_content',
  14. 'pre_esc_html'
  15. );

以上是关于允许使用';pre';标记在博客上编写代码的主要内容,如果未能解决你的问题,请参考以下文章