http://wordpress.org/extend/plugins/tweetily-tweet-wordpress-posts-automatically/
我想知道是否有可能让它推特成为一个自定义字段,而不是帖子标题?
在顶部核心。php,第214行
if ($tweet_type == "title" || $tweet_type == "titlenbody") {
$title = stripslashes($post->post_title);
$title = strip_tags($title);
$title = preg_replace(\'/\\s\\s+/\', \' \', $title);
} else {
$title = "";
}
我可以用其他可以做到这一点的东西来代替post\\u标题吗?