既存のテーマを利用したショップの作り(その2)を参考に商品ページを作成したいと考えております。前回の(その1)についてもnanbu様のアドバイスにより解決しております。その前回(その1)と納品書の名前表示の変更など全てデベロップバージョンを適用することで対応させて頂きました。
そこで商品ページを作りたいと思っております。既存テーマを利用したショップ作り(その1)と(その2)は編集が全て連動しておりますが、デベロップバージョンを使用している私は具体的にどこに変更を加えれば宜しいでしょうか?大変お手数をお掛け致しますが、ご教授お願い致します。
現在、Carringtonというテーマをダウンロードして運用してます。
http://wordpress.org/extend/themes/carrington-blog
現在の使用環境は以下となっております。
商品カテゴリー:46
Welcart:0.5.2
サーバー:Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8i PHP/4.4.9
MySQL:5.0.51b
PHP:5.2.10
使用テーマ:carrington Ver2.2
ブラウザ:Firefoxバージョン3.5.10
Wordpressバージョン:3.0-ja(今回バージョンアップしましたが変化なし)
(Welcartのホーム画面より利用環境を書きました)
【以下はcategory.phpとなります】
‘<?php
// This file is part of the Carrington Blog Theme for WordPress
// http://carringtontheme.com
//
// Copyright (c) 2008-2009 Crowd Favorite, Ltd. All rights reserved.
// http://crowdfavorite.com
//
// Released under the GPL license
// http://www.opensource.org/licenses/gpl-license.php
//
// **********************************************************************
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// **********************************************************************
if (__FILE__ == $_SERVER) { die(); }
if (CFCT_DEBUG) { cfct_banner(__FILE__); }
get_header();
$cat_title = ‘‘.single_cat_title(”, false).’‘;
?>
<div id=”content”>
<h1 class=”page-title”><?php printf(__(‘Category Archives: %s’, ‘carrington-blog’), $cat_title); ?></h1>
<div class=”description”><?php echo category_description(); ?></div>
<?php
cfct_loop();
cfct_misc(‘nav-posts’);
?>
</div>
<?php
get_sidebar();
get_footer();
?>’