投稿で、カテゴリー毎に違うsingle.phpを使う。
201004/02 Category : WEB Tag : php, Wordpress
phpで振り分ければ可能っぽい。
単一の投稿を表示する時のテンプレートはsingle.phpなので、single.phpに以下を記載。
<?php
$post = $wp_query -> post;
if(in_category('3')) { // カテゴリーID3の投稿なら
include(TEMPLATEPATH.'/single_blog.php'); //single_blog.phpを使う。
} else { //それ以外なら
include(TEMPLATEPATH.'/single_other.php'); //single_other.phpを使う。
} ?>
以上。
後はsingle_blog.phpとsingle_other.phpを作ってアップロードするだけ。single.phpには上記のコードだけで大丈夫。
参考サイト : notizbloc
[...] http://www.tomtom24.com/weblog/masa/2010/04/02/11/07/24/ [...]
ピンバック by カテゴリーごとに個別投稿ページのデザインを変える | brightear — 2010年7月3日 @ 4:24 AM