网络营销电子商务研究中心  
How to buy the best prescription safety glasses in Canada? Let's study!
Go Back   网络营销电子商务研究中心 > 网站建设 > WordPress
User Name
Password
 
FAQ Members List Calendar Cheap Glasses

Reply
 
Thread Tools Display Modes
  #1   IP: 173.255.248.85
Old 2014-12-09, 08:20 AM
Adrian Adrian is offline
初级会员
 
Join Date: 2009-02-21
Posts: 1
Adrian 现在声名狼藉
Default wordpress使用pre标签来显示你的HTML

我们在使用wordpress建立自己的博客时,经常需要对我们的代码进行高亮处理,当然我们可以使用插件来实现,例如以下几款插件:
wordpress代码高亮插件:WP Code Highlight
SyntaxHighlighter Evolved
wp-syntax

当然我们有时候很不喜欢用插件,毕竟插件还是影响了wordpress的性能,那我们就用代码来实现:
在我们主题的functions.php文件添加如下代码:
Code:
add_filter( 'the_content', 'pre_content_filter', 0 );
/**
 * 转换pre标签中的html代码
 *
 * 使用'the_content'钩子.
 *
 * @author c.bavota
 */
function pre_content_filter( $content ) {
	return preg_replace_callback( '|<pre.*>(.*)</pre|isU' , 'convert_pre_entities', $content );
}

function convert_pre_entities( $matches ) {
	return str_replace( $matches[1], htmlentities( $matches[1] ), $matches[0] );
}
然后我们新建文章添加如下代码:
<pre>
<!DOCTYPE HTML>
<html>
<head>
<meta charset=”UTF-8″>
</head>
<body>
Test html.
</body>
</html>
</pre>
最终效果如下图:
Attached Images
File Type: jpg pre.jpg (92 KB, 1 views)
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Prescription-glasses.com offers prescription glasses online at discount prices.
All times are GMT +8. The time now is 10:54 AM.


Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.