[WordPress][Plugins] Customizable Post Listings をカスタマイズ

2006年12月13日 水曜日 13時12分
E-Mail This Post/Page Print This Post/Page

Customizable Post Listings プラグインはアーカイブをリストさせたり、好きなところにカテゴリー別にタイトルを表示させたりできて便利です。このプラグインを使用して単にタイトルを表示させるだけなら問題はないのですが、投稿内容の一部を表示させようとすると、日本語の場合抜粋される文字数がでたらめになりうまくいきません。

使用方法として、このプラグインの関数を呼び出す際に、タイトルや日付以外に記事内容を表示させるパラメータとして、%post_excerpt_short% があります。

PHP:
  1. <ul>
  2. <?php c2c_get_recent_posts(3, "<li>%post_date%: %post_URL%<br />by: %post_author_posts%<br />%post_excerpt_short%</li>", "34"); ?>
  3. </ul>

この方法を使った場合に、デフォルトでは日本語の文字数を認識してくれず表示が乱れます。これは、こちらで紹介したメカニズムと同様の問題です。プログラムの単語数を数える方法がアルファベットをベースにしているため、これを日本語の文字数に変更させる必要があります。phpの関数、mb_substr() を使用します。

この関数は、substr() と対になっていて、一般に抜粋表示がうまくいかない場合は substr() を探して mb_substr() に変更してあげるというのが定石です。

customizable-post-listings.php 内の244行目を編集します。

PHP:
  1. if (strlen($new)> $excerpt_length) $new = substr($new,0,$excerpt_length) . "...";

の strlen を mb_strlen、substr を mb_substr に変更し、

PHP:
  1. if (mb_strlen($new)> $excerpt_length) $new = mb_substr($new,0,$excerpt_length) . "...";

次に147行目に変更を加えて終わりです。

PHP:
  1. $excerpt_words = 6// Number of words to use for %post_excerpt_short%

デフォルトでは 6つのアルファベットの単語で抜粋するようになっていますので、これを指定した文字数で認識させるため、上の 6 を 0 にします。

PHP:
  1. $excerpt_words = 0;

また、文字数の長さの調節は以下の50の部分を好みの数字に変更してできます。

PHP:
  1. $excerpt_length = 50;   // Number of characters to use for %post_excerpt_short%, only used if $excerpt_words is 0

追記:12/14/06 記事内容修正

ぼの さんご指摘ありがとうございます。
WP plugin: 最近の投稿リストを表示 - Customizable Post Listings

Share This

この記事に関連する NEWS

この記事に関連するトピック

このエントリーへの Yahoogle Suggestions

2 Responses to “[WordPress][Plugins] Customizable Post Listings をカスタマイズ”

power source*
power source* on 12/14/06 at 10:18 am

WP plugin: 最近の投稿リストを表示 - Custo…

WordPressのプラグイン:Customizable Post Listings 1.1 を入れてみた。サイドバーの「Recent Posts」, 「Recentl (more…)

customizable Post Listings  « Rif.

[…] Ref:ぱそずき :D)‐く » Blog Archive » [WordPress][Plugins] Customizable Post Listings をカスタマイズ パラメータの説明 […]

Trackback this Post |

 

記事ヒット TOP 10

WordPress Tips from Social Bookmarks Jp

    There is no entries available for this category.

WordPress Tips from Social Bookmarks

    There is no entries available for this category.

WordPress Plugins from Social Bookmarks

    There is no entries available for this category.

Tag Cloud

admin Admin Drop Menus Admin Memo Admin Panel advanced drop menus array unique blog cron dabeya Dagon Design Sitemap Generator dropcap Edit N Place error Feedburner game google hack html HTML CSS Internet NEWS Permalink Redirect PHP phpBB2 plugin RSS scripts search stattraq template the content Ultimate Tag Warrior Web Management Windows XP Wordpress WP Plugins WPページ  拡張子 カスタマイズ カスタム関数 カテゴリー コード セキュリティ タグ トップページ トラックバック フィード 投稿 抜粋 日本語 時刻 時間 正規表現 表示 記事

サイト メニュー

Blogtimes image
ぱそずき :D)‐く © 2008
Close
E-mail It