moTweets Ver.1.8.4がリリースされましたね。
いつまで製品版でのβテストは続くのでしょうか・・・(=_=)
変更点は・・・
# NEW: Font size selection
# Improved caching algorithm
# Fixed an issue with Japanese and Korean character sets
# Fixed issues related to timezone and security with Twitter
みたいです。
さっくりVerUPして終わりですね(・∀・)

WordPress 3.0 英語版がリリースされたっぽいですね。
今回はβテストも参加してないのでしばらく様子見してプラグインとかが
問題なく動くようならアップデートしようと思います(。・ω・。)
3.0は楽しそうだけど機能的には2.x系で十分足りてるので
他の人柱さんの情報を待とうっと(・∀・)
moTweets Ver.1.8.3がリリースされましたね。
本当に製品版でのβテストになってますね(´д`)
変更点は・・・
# NEW: Using regional settings displaying date/time
# NEW: Raven Black 2 skin (blue hightlights)
# Increased protection for storing passwords
みたいです。
さっくりVerUPして終わりですね(・∀・)
moTweets Ver.1.8.2がリリースされましたね。
製品版でのβテストちゅぅ?w
変更点は・・・
# Fixed an issue with posting a message in Japanese close to the 140 character mark
# Fixed an issue with the security login with Twitter
みたいです。
さっくりVerUPして終わりそうな感じです(・∀・)
2chスレッドのdat取得方法メモ
スレッドURLを下記のように書き変え
鯖URL/板の名前/dat/スレッド番号.dat
例:
http://hibari.2ch.net/test/read.cgi/smartphone/1276484552/
↓
http://hibari.2ch.net/smartphone/dat/1276484552.dat
でdatを取得できる。
2chは、read.cgiでdatファイルをHTMLに変換して表示してるみたい?
昨日βテスト開始されたのに・・・moTweets Ver.1.8.1がリリースされましたね。
1日だけのβテスト?w
変更点は・・・
# Reworked the picture and video upload
# Added twitter’s OAuth security standards
# Several smaller bug fixes / improvements
みたいです。
今回もあまり変わらなさそうですね。
Ver.1.8.0Beta1が出ましたね。
TwitterでPanoramicSoftの中の人がつぶやいてました。
今回は変更点が出てないっぽいので見送るかも(^0^;)
時間があれば遊んでみます(。・ω・。)
ニコニコプレス Ver2.3 (夏)のトップページをポータルサイト風にカスタマイズする方法。
トップページをポータルサイト風にカスタマイズで基本的な流れは大丈夫だけど
一部変更が必要です。
変更箇所だけ記述します。
サムネイル付カテゴリーリストを配置
<h3>見出し</h3>
<ul class="entry_list clearfix">
<?php $posts = get_posts('numberposts=表示件数&category=カテゴリID');
foreach($posts as $post) :
setup_postdata($post); ?>
<?php $thumbnail = getThumbnail() ?>
<?php $title = the_title('','',0);
$titlenum = mb_strlen( $title , 'UTF8' ) ;
if($titlenum > 32){
$title = mb_substr( $title, 0, 32 , 'UTF8'). "…";
}
?>
<li class="image"><a href="<?php the_permalink(); ?>"><img src="<?php echo $thumbnail; ?>" alt="<?php the_title(); ?>" width="72" height="54" /></a></li>
<li class="date"><?php the_time(__('Y年m月d日')); ?> at <?php the_time('G時i分'); ?></li>
<li class="title clearfix"><a href="<?php the_permalink(); ?>"><?php echo $title ; ?></a></li>
<?php endforeach; ?>
</ul>
上記に入れ替え
floatで左右にボックスを配置
左にfloat
<div class="box_left cleafix">
左に回り込ませたい要素
</div>
class="box_left"からclass="box_left cleafix"に変更
右にfloat
<div class="box_right cleafix">
左に回り込ませたい要素
</div>
class="box_right"からclass="box_right cleafix"に変更
これでニコニコプレス Ver2.3 (夏)での表示も問題なくなるはず?(。・ω・。)
ニコニコプレス Ver2.3 (夏)のサムネイル付き関連記事を表示する方法。
サムネイル付き関連記事を表示で基本的な流れは大丈夫だけど一部変更が必要です。
変更箇所だけ記述します。
関連記事の出力方法をニコニコプレスに置き換えよう
・Output templateの内容
<li class="image"><a href="{url}"><img src="{php: $thumbnail=get_post_meta($result->ID, 'thumbnail',true); if ($thumbnail)echo $thumbnail; if ($thumbnail=='') echo get_bloginfo('template_directory') .'/images/spacer.jpg';}" width="72" height="54" alt="{title}" /></a></li>
<li class="title">{link}</li>
<li class="excerpt clearfix">{excerpt}</li>
・Text and codes before the listの内容
<ul class="entry_list kanren clearfix">
・Text and codes after the listの内容
</ul>
上記に入れ替え
CSSを追加しよう
下記に差し替え
/* 関連記事 */
.kanren li.image {
background: url(../images/spacer_kanren.jpg) no-repeat center!important;
}
.kanren li.title {
border: none;
margin: 0px!important;
padding: 0px!important;
}
.kanren li.excerpt {
margin-bottom: 5px;
border-bottom: 2px dashed #ccc;
}
.kanren a {
color: #0f8fcf!important;
}
これでニコニコプレス Ver2.3 (夏)での表示も問題なくなるはず?(。・ω・。)