wordpress plugin 拦截题目和内容

<?php 
/*
Plugin Name: FC Filter
Plugin URI: http://mistbow.iteye.com/blog/1500008
Description: Just for demo purposes
Author: guo fuchun
Author 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();
});

?>

你可能感兴趣的:(wordpress)