wordpress界隈で何かと話題のテーマ、P2 を入れてみた!
はい、どん!
シンプル・イズ・ベストやね。
でもテーマを当てる際に問題があったのでメモ。このブログはさくらインターネットのサーバーなのですが
P2テーマをあてようとするとエラーが発生・・・。またかよさくらインターネット、と思いいろいろググる。
はい答えはhttp://wordpress.org/support/topic/255088に!
なんとfunction.php とentry.phpにショートオープンタグで書かれている部分があり、ショートオープンタグがoffになっているサーバーでエラーが起こっていただけでした。
上記フォーラムから該当部分を引用しておきます。次のリリースでは修正されていることでしょう。
* line 429 of functions.php
<div class="postcontent<?php if (current_user_can( ‘edit_post’, get_the_id() )) {?> editarea<?}?>"….should be:
<div class="postcontent<?php if (current_user_can( ‘edit_post’, get_the_id() )) {?> editarea<?php } ?>"* line 27 of entry.php
<div class="postcontent<?php if (current_user_can( ‘edit_post’, get_the_id() )) {?> editarea<?}?>"…
shoud be:
`<div class="postcontent<?php if (current_user_can( ‘edit_post’, get_the_id() )) {?> editarea<?php } ?>"
追記:2009/4/29
結局テーマ戻しました。

WordPress 2.7対応「導入&カスタマイズ」実践ガイド―個人ブログも企業サイトも簡単&無料で構築できる!
著者/訳者:吉村 正春
定価:¥ 2,730
秀和システム
EAN:9784798022017

