Category
- 1/43 Car's (246)
- Bouldering (14)
- Camera (32)
- Computer (41)
- Everyday (134)
- Goods (12)
- Linux (49)
- Music (32)
- Photo (65)
- Plant (33)
- Plastic Model (58)
- Trekking (43)
- WordPress (35)
It's blog written about Trekking ,1/43 MiniCar , Plastic Model , Photo , Computing.
RSSGoogle+の投稿をブログに取り込むGoogle+ Crosspostingを使っていますが、
Google+にコミュニティが新機能として追加され、
一般公開のコミュニティに投稿すると自動的にブログに取り込まれます。
しかし、ブログには関係も脈略もない投稿は取り込みたくないので、
コミュニティでの投稿は取り込まない様に改良してみました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
function g_crossposting_post_new($activities) { // go through all given activities and post them $latest_activity_id = null; foreach ($activities as $activity) { // store ID of latest activity so that we know what was posted already if ($latest_activity_id == null) { $latest_activity_id = $activity->id; update_option('g_crossposting_last_activity_id' , $latest_activity_id); } //変更 コミュニティからの投稿は無視する if ($activity->provider->title == 'Community') { continue; } |