Как изменить меню.

Короче мне нужно изменить меню (панель навигации) так, чтобы показывались не страницы, а категории вот heder.php:

Код:

<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/
?><!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 7]>
<html id="ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html id="ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<title><?php
    /*
     * Print the <title> tag based on what is being viewed.
     */
    global $page, $paged;

 Читать дальше »

Нужный файл шаблона меню.

Помогите найти нужный файл шаблона меню.

<div id="menu">
        <ul>
            <li class="current_page_item<?php if (is_home()) echo ' current_page_item'; ?>">
            <a href="<?php echo get_option('home'); ?>/" class="current_page_item"><div ><div >Homepage</div></div></a>
            </li>
            <?php wp_list_pages('title_li=' ); ?>
        </ul>
    </div>

Читать дальше »

Cделать картинки в превью

Есть блог, в котором уже опубликованы сотни статей, содержащие картинки. Эти картинки самого разного размера и формата, а также позиционированы как справа, так и слева относительно текста статьи.

Читать дальше »

Редактирования footer.php

Вот так выглядит footer на сайте :

А вот и код footer :

Код:

    </div>
    <?php
        $loc = theme_option('sidebar_location');
        if($loc==2 || $loc==4) {
            get_sidebar(); // calling the First Sidebar
        }
        if(theme_option('sidebar_width2')!=0 && $loc!=3) get_sidebar( "second" ); // calling the Second Sidebar
    ?>
</div>
<!-- begin footer -->
<div id="footer">
&copy; <a href="<?php bloginfo('home'); ?>"><?php bloginfo('name'); ?></a><br />
<?php if ( (is_home())&&!(is_paged()) ){ ?><div id="copyright">Локализация: <a href="http://ru-wordpress.com/" title="Шаблоны для Вордпресс">Шаблоны Вордпресс</a></div><?php } ?>
</div>
<?php wp_footer(); ?>
<script type="text/javascript" src="<?php echo THEME_URL; ?>/js/effects.js"></script> 
<script type="text/javascript">
/* <![CDATA[ */
jQuery(function(){
    jQuery("ul.sf-menu").supersubs({ 
        minWidth:    12,
        maxWidth:    27,
        extraWidth:  1
    }).superfish({ 
        delay:       100,
        speed:       250 
    });    });
/* ]]> */
</script>

 Читать дальше »