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();});?>