FeedBurnerのフィード・カウントをWordPressのウィジェットで使えるようにする「FeedBurner Widget」を導入してみたおww
しかし!「フィード・カウントのURLが古い」「アニメーション版を選んでも反映されない」という問題(?)があったので弄ってみますた。
改造元は”WordPress › FeedBurner Widget « WordPress Plugins“で配布されているバージョン1.2。
「新しいバージョンの FeedBurner Widget が利用可能です。バージョン 1.2 の詳細を見るか、自動アップグレードを実行してください。」と表示されるが、自動アップグレードを行うとパッチを当てる前の状態に戻るので注意。逆に戻したい方はご自由にww
--- widget-feedburner.php Wed Sep 23 16:31:55 2009 +++ widget-feedburner.php.new Wed Sep 23 16:32:00 2009 @@ -3,3 +3,3 @@ Plugin Name: FeedBurner Widget -Version: 1.2 +Version: 1.2a Plugin URI: http://dichev.com/blog/webdesign/feedburner-widget-wordpress-plugin/ @@ -29,3 +29,3 @@ // FeedBurner Stats widget options - $fb_brand = !empty($options['fb_brand'])?$options['fb_brand']:'http://feeds2.feedburner.com/'; + $fb_brand = !empty($options['fb_brand'])?$options['fb_brand']:'http://feeds.feedburner.com/'; $fb_user = $options['fb_user']; @@ -54,3 +54,3 @@ $options = array('title'=>'FeedBurner RSS', - 'fb_brand'=>'http://feeds2.feedburner.com/', + 'fb_brand'=>'http://feeds.feedburner.com/', 'fb_user'=>'', @@ -58,3 +58,3 @@ 'fb_fg'=>'#345797', - 'fb_anim'=>'0', + 'fb_anim'=>'1', 'url_params'=>''); @@ -114,3 +114,3 @@ <input type="text" name="fb_user" id="fb_user" value="<?php echo $fb_user; ?/>" class="widefat" /><br /> - <small><em>(http://feeds2.feedburner.com/USERNAME)</em></small> + <small><em>(http://feeds.feedburner.com/USERNAME)</em></small> <p><label for="fb_brand">MyBrand (if using this feature)</label><br /> @@ -120,4 +120,4 @@ </p><p><strong>Chicklet Style</strong></p> - <p><input type="radio" name="fb_anim" value="0"<?php echo (($fb_anim='1')?' checked="checked"':''); ?/> id="fb_static" /> <label for="fb_static"><img src="http://www.feedburner.com/fb/i/services/feedcount_static.gif" alt="" /> Static</label></p> - <p><input type="radio" name="fb_anim" value="1"<?php echo (($fb_anim='1')?'':' checked="checked"'); ?/> id="fb_animated" /> <label for="fb_animated"><img src="http://www.feedburner.com/fb/i/services/feedcount_anim.gif" alt="" /> Animated</label></p> + <p><input type="radio" name="fb_anim" value="0"<?php echo (($fb_anim='1')?' checked="checked"':''); ?/> id="fb_static" /> <label for="fb_static"><img src="http://feedburner.google.com/fb/i/services/feedcount_static.gif" alt="" /> Static</label></p> + <p><input type="radio" name="fb_anim" value="1"<?php echo (($fb_anim='1')?'':' checked="checked"'); ?/> id="fb_animated" /> <label for="fb_animated"><img src="http://feedburner.google.com/fb/i/services/feedcount_anim.gif" alt="" /> Animated</label></p>