Nothing happens =(
I've got only archive.php (my theme based on default one)...
get_header(); ?>
<div class="mainDIV">
<div class="left">
<?php get_sidebar(); ?>
</div>
<div class="right">
<?php if(is_category('3')){
query_posts('meta_key=sort_num&orderby=meta_value&order=ASC');
}
?>
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h1><?php printf(__('%s', 'artvladivostok'), single_cat_title('', false)); ?></h1>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h1><?php printf(__('Posts Tagged ‘%s’', 'artvladivostok'), single_tag_title('', false) ); ?></h1>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h1><?php printf(_c('Archive for %s|Daily archive page', 'artvladivostok'), get_the_time(__('F jS, Y', 'artvladivostok'))); ?></h1>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h1><?php printf(_c('Archive for %s|Monthly archive page', 'artvladivostok'), get_the_time(__('F, Y', 'artvladivostok'))); ?></h1>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h1><?php printf(_c('Archive for %s|Yearly archive page', 'artvladivostok'), get_the_time(__('Y', 'artvladivostok'))); ?></h1>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h1><?php _e('Author Archive', 'artvladivostok'); ?></h1>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h1><?php _e('Blog Archives', 'artvladivostok'); ?></h1>
<?php } ?>
<?php while (have_posts()) : the_post(); ?>