テンプレートに順序を指定してありました…
効かないはず…(まずは、昨日のソース)
[html]<?php
$categories = get_terms( ‘category’, array(
‘orderby’ => ‘count’,
‘hide_empty’ => 0,
‘child_of’ => 60,
) );
foreach($categories as $value):
?>
<p><a href="<?php echo get_category_link($value->term_id); ?>"><?php echo $value->name;?></a></p>
<?php endforeach; ?>
[/html]
変更後
[html]’orderby’ => ‘none’,[/html]
効きました…汗
このテンプレートの名前を教えてください。
確か、twentyelevenの子テーマで制作していたときの例だったと思います。