待ちに待ったWordPress 2.9が開発者の手により完成し、リリース候補としてダウンロードできるようになりました。リリース候補とは何ぞやと思われる方もいらっしゃるかもしれません。リリース候補版とは、開発者がベータ版で追加される予定だった機能がすべて追加されたと判断したもので、バグがないかどうかの追加テストが必要な点を除けば、正式版になる可能性があるものです。このため、コミュニティに貢献するメンバーとして、誰もがリリース候補版をダウンロードし、すべてが問題なく動作するかどうかをテストする必要があります。もしあなたのサイトがプラグインを使用しているのであれば、それらが新しいバージョンと互換性があるかどうかを確認し、動作するかどうかを投稿者や他のユーザーに知らせることで手助けをするべきです。ディレクトリのプラグインページを見ることでこれを行うことができます。(例)
WordPressは本当にコミュニティベースのスクリプトであり、みんなの助け、提案、貢献がなければ、すべてを機能させることは不可能だったでしょう。
リリース候補版はこのリンクからダウンロードできます。もしダウンロードしたくないのであれば、この新しいリリースに搭載されるクールな機能をすべてチェックしてみてください。もしかしたら、あなたの考えを変えるかもしれないし、このリリースがどんなに素晴らしいものになるか、あなたの心を揺さぶるかもしれない。
WordPressのプラグイン一括更新
WordPressがプラグインのワンクリックアップグレードを導入したとき、それは7月のクリスマスのようでした。しかし今回、WordPress 2.9がリリースされたことで、実際のクリスマスか、それより少し早いかもしれませんが、WordPressの管理画面からワンクリックで複数のプラグインをアップグレードできるようになりました。以下のスクリーンショットをご覧ください:
データベース機能の最適化/修復
WordPressは、データベースの修復と最適化を可能にする新しい機能をコアに追加しました。この機能を有効化するには、wp-config.phpに以下の行を追加する必要があります。
define(‘WP_ALLOW_REPAIR’, true);
この行を追加すると、このURLにあるスクリプトを実行できるようになります:
http://www.yoursite.com/wp-admin/maint/repair.php
このページにアクセスすると、このような画面が表示されます:
WordPressのごみ箱/ゴミ箱内
PCユーザーであろうとMacユーザーであろうと、大切なものを誤って削除してしまった経験はすべてあるはずだ。しかし、オペレーティングシステムの良いところは、ゴミ箱内の保管場所があることだ。PCではリサイクル・ビン、Macではゴミ箱内のゴミ箱と呼ばれるが、呼び名に関係なく、復元できるという事実が重要なのだ。WordPressは、投稿、ページ、コメントにも同様の機能を追加した。これらを永久に削除する代わりに、ゴミ箱内のゴミ箱を空にすることができる。初期設定では、WordPressは30日ごとにゴミ箱内のゴミを空にしますが、wp-config.phpに以下のコードを入力するだけで、期限を変更することができます:
define( ‘EMPTY_TRASH_DAYS’, 10 );
下記のスクリーンショットをご覧ください:
イメージエディター
イメージエディターは、多くのユーザーが待ち望んでいたもので、今回のリリースに含まれています。このエディターでは、トリミング、回転、拡大縮小などの簡単な変更を行うことができます。この機能がどのように見えるか、下のスクリーンショットをご覧ください。
投稿サムネイルの追加機能
投稿をサムネイル付きでトップページに表示するサイトを見たことがあるだろう。あるいは、インデックスの各投稿の横に投稿サムネイルを表示しているサイトも多いでしょう。バージョン2.9以前では、カスタムフィールドを使っていました。このリリースでは、投稿を書くときにサムネイルを追加するだけで、テンプレートでの表示がさらに簡単になりました。
管理画面でこの機能を利用するためには、この機能をサポートしているテーマが必要です。この機能のサポートを追加するのはとても簡単で、近日中に完全なチュートリアルを公開する予定です。テーマのfunctions.phpに以下のコードを追加してください:
add_theme_support( ‘post-thumbnails’ );
サムネイルを選択したら、次のコードを使ってテンプレートに表示することができます:
<?php the_post_thumbnail( ‘thumbnail’ ); ?>?
この関数はとても便利な機能なので、近日中に完全なガイドを投稿する予定です。
ユーザーの連絡先情報を拡張する
WordPressのユーザープロフィール・ページはかなり古く、twitterやfacebookのような新しいサイトネットワークが人気を博しています。バージョン2.9以前では、連絡先エリアにカスタマイザーを追加するのは非常に困難でしたが、Joost De Valkの貢献により、この機能が利用できるようになりました。
functions.phpを開き、以下の関数を追加するだけです:
<?php
function my_new_contactmethods( $contactmethods ) { // ツイッターを追加する。
// Twitterを追加する
contactmethods['twitter'] = ‘Twitter’;
//Facebookを追加する
Contactmethods['facebook'] = ‘Facebook’;return $contactmethods;
}
add_filter(‘user_contactmethods’,’my_new_contactmethods’,10,1);
?>
これで、ユーザープロフィールのページに余分なフィールドが追加されます。例として以下のスクリーンショットをご覧ください。
通常の$curauth変数またはthe_author_meta変数を使用することで、投稿者プロフィールページにこれらを表示することができます。また、近い将来、この機能がどのように機能するかについて詳しく説明するために、これらについても書く予定です。
新規抜粋フィルター
WordPress 2.8.6までは、ユーザーがループ内にthe_excerptコードを追加すると、55ワード制限のコンテンツが表示され、ワード制限に達すると[…]が追加されていました。この新しい機能により、関数を指定し、抜粋の単語数とテキストの両方をコントロールできるようになりました。すべてテーマのfunction.phpファイルを開き、以下のコードを追加するだけです:
// 抜粋の長さを変更する
関数 new_excerpt_length($length) { // 抜粋の長さを変更する
return 60;
}
add_filter(‘excerpt_length’, ‘new_excerpt_length’);// もっと抜粋を変更する
関数 new_excerpt_more($more) { // 抜粋の長さを変更する
return ‘…’;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);
この機能を提案してくれたRamiyにすべて感謝する。
oEmbedで埋め込みがより簡単に
ViperBond007のおかげで、WordPress 2.9のコアにこの機能が追加された。これは、FlickrやYouTubeなどのメディアプロバイダーが、WordPressのような消費者向けアプリケーションにメディアに関するデータを提供できるようにするための仕様です。
このバージョンには他にも多くの機能が含まれている。すべてのリストを見るには、このページをチェックしてください。
ためらわず、コミュニティのために自分の役割を果たそう。このリンクからリリース候補版をダウンロードし、すべての機能のテストを開始してください。
1skyliner
Great Post updated my blog to finally 2.9. Now time to add these codes in wp-config
Shahab Khan
Database repair and optimization information is great really. Going to edit my wp-config right now.
Btw i will be waiting for your tutorial for adding thumbnail to blog posts.
Thanks again for sharing this.
Editorial Staff
We already wrote that article. You may find it here
管理者
Shahab Khan
Oh thanks!
I will go through that article.
Harsh Agrawal
Great Post updated my blog to finally 2.9. Now time to add these codes in wp-config
sriganesh
the list detail really makes me to upgrade now, its have more features.:D cool
-=-=-=
DOubt :
1. if we add the lines to wp-congfig , if something happens error all dat will be lost ???
2. my wordpress admin post edtior does show visual editor (i didnt diable it) the buttons and the typed text is not visible from W2.7 now iam uptodate. what to do
any help or tips ?? coz i like the thumnail drag and drop features : codings make me sick
-=-=-=
thanks for that merry Xmas
Vanesa
Great post! I’m trying to optimized the database but the url: http://www.yoursite.com/wp-admin/maint/repair.php didn´t show me the option, only shows the home page instead
PelFusion
thanks for updating us
David McDougal
WOW, really looking forward to the new version. I had heard of most of the new features, but the database repiar/optimize was one that I did not know about. 2.9 looks to make it alot easier to create a highly functional site on a per page, or per post basis without alot of extra pages or plugins. Way to go Wordpress Core team.
Artem Russakovskii
Finally built-in support for post thumbnails! Very excited about that.
Chris
It says on the Changelog that custom post types did not make it into 2.9 — Just wondering what your last paragraph is referring to?
thanks though for this — WordPress.org’s own announcement leaves much to be desired.
The Apple Vine
Looks awesome. Can’t wait to install the final version!
Michael Louviere
Wow, The post thumbnails feature is excellent! Way to go WP!
Robert Dall
Great overview of the new features in WP 2.9
I so look forward to it.
rob
yeah cool … but we already have all of this for years in TYPO3 …
Matt
@Rob – If TYPO3 is so great, then why are you reading the WordPress blogs?
AVDisco
Nice list!
I think WP’s image management features are really coming of age — what with post thumbs, image editing and the gallery — you need a hell of a lot less plugins to build a portfolio-type website that you used to.
centshonor
Personally, I’m still hoping Wordpress gets some much improved SFTP support.
Indrek
Thanks for the overview about these new features. Can’t wait until the live version is released.
maverick
hey thanks for letting me know about this. have downloaded it. will test it soon.
thanks
Drazick
I wish they improved the Editor.
Jim
Make sure you back up your database before letting anything “auto repair” your data. Just saying…
bobjohnsonmilw
Apparently I’m a better developer than I give myself credit, this is all pretty basic functionality for most things I’ve ever had to custom build. I still don’t understand why WP is that big of a deal, there are plenty of other great options out there, if not better in many ways.
Luke Wertz
Just to be clear: the custom post types are not going to make it into WP2.9, but “will land early in the 3.0 dev cycle”. See the ticket for more info on that.
Mohamed Rias @ techieblogger.com
wow thats a gr8 news.. I was looking for those features since a longtime..
Vinish
Great news
Satish Gandham
To my knowledge “Excerpt Filter” was there in wordpress versions before 2.8.6.
What arguments does the the_post_thumbnail function take, is it possible to specify the image size to be used in different locations or should i use timthumb script??
Konstantin
Great post! I ran the 2.9-beta2 yesterday and switched to the RC1 today, everything works as expected.
Sarah Arrow
The ability to add thumbnails without a custom field is something I am looking forward to, and the trash is always useful
Thanks for sharing.
Sarah
Eric Grint
All this for free? hehe This is awesome
Enk.
I knew about the Image Editor and Trash Can from a long time.. but this is gonna be something beautiful. Thanks WPB and Automatic for this awesome thing !