投稿で、カテゴリー毎に違うsingle.phpを使う。

201004/02   Category : WEB   Tag : ,

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

関連する投稿







コメント

▼ TWITTER

Powered by Twitter Tools