首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

wordpress plugin 阻截题目和内容

2012-06-29 
wordpress plugin 拦截题目和内容?php /*Plugin Name: FC FilterPlugin URI: http://mistbow.iteye.com/b

wordpress plugin 拦截题目和内容

<?php /*Plugin Name: FC FilterPlugin URI: http://mistbow.iteye.com/blog/1500008Description: Just for demo purposesAuthor: guo fuchunAuthor URI: http://mistbow.iteye.com/Version: 1.0*///add_filter('the_title', ucwords);/*add_filter('the_title', function($content) {renturn ucwords(#content);});*/add_filter('the_content', function($content) {return $content . ' ' . time();});?>

热点排行