WordPress在文章和评论中插入代码
本文将介绍如何在文章及评论中使用code标签来插入代码。 [erphpdown] /** * WordPres…
本文将介绍如何在文章及评论中使用code
标签来插入代码。
[erphpdown]
/**
* WordPress在文章和评论中插入代码
*/
add_filter('pre_comment_content', 'lxtx_encode_code_in_posts_comments');
add_filter('the_content', 'lxtx_encode_code_in_posts_comments');
function lxtx_encode_code_in_posts_comments($source) {
$encoded = preg_replace_callback('/<code>(.*?)</code>/ims',
create_function(
'$matches',
'$matches[1] = preg_replace(
array("/^[r|n]+/i", "/[r|n]+$/i"), "",
$matches[1]);
return "<code>" . esc_html( $matches[1] ) . "</code>";'
),
$source);
if ($encoded)
return $encoded;
else
return $source;
}
[/erphpdown]
将上面的代码加入 functions.php 中,然后使用 <code></code> 来插入代码即可!
类别:WordPress技巧、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!