【ワードプレス教室 横浜スクール】 ホームページ・ブログ作成講座日誌 Intuitive Custom Post Orderプラグインの使い方 順番の反映

TCD Preciousテーマの改造記録@ワードプレス教室

Intuitive Custom Post Orderワードプレス プラグインでの順番の反映

taxonomy-product-cat.php

<?php query_posts($query_string .’&orderby=menu_order’.’&order=asc’ ); ?>

を次のように追加

<?php get_header(); $options = get_desing_plus_option(); ?>

<div id=”main_col”>

<h2 class=”headline1″><span><?php echo single_cat_title(); ?></span></h2>
<?php query_posts($query_string .’&orderby=menu_order’.’&order=asc’ ); ?>
<?php if ( have_posts() ) : ?>
<ol id=”product_list” class=”clearfix”>
<?php
while ( have_posts() ) : the_post();
$custom_fields = get_post_custom($post->ID);
$value1 = get_post_meta($post->ID, ‘product_image1’, true); $image1 = wp_get_attachment_image_src($value1, ‘size3’);
?>
<li class=”clearfix”>
<a class=”image” href=”<?php the_permalink() ?>”><?php if (!empty($custom_fields[‘product_image1’][0])) { ?><img src=”<?php echo $image1[0]; ?>” alt=”” title=”” /><?php } else { echo ‘<img src=”‘; bloginfo(‘template_url’); echo ‘/img/common/no_image3.gif” alt=”” title=”” />’; }; ?></a>
<h4 class=”title”><a href=”<?php the_permalink() ?>”><?php the_title(); ?></a></h4>
</li>
<?php endwhile; ?>