Hi!
Do you know how can I change the position between the pagename and the items (psotnames, categories,…) in the web tab? I would like to put the pagename in the first position.
This is the code in header.php:
<?php
/**
* The Header for our theme
*
* Displays all of the <head> section and everything up till <div id=”main”>
*/
?><!DOCTYPE html>
<!–[if IE 7]>
<html class=”ie ie7″ <?php language_attributes(); ?>>
<![endif]–>
<!–[if IE 8]>
<html class=”ie ie8″ <?php language_attributes(); ?>>
<![endif]–>
<!–[if !(IE 7) | !(IE 8) ]><!–>
<html <?php language_attributes(); ?>>
<!–<![endif]–>
<head>
<meta charset=”<?php bloginfo(‘charset’); ?>”>
<meta name=”viewport” content=”width=device-width”>
<title><?php wp_title(‘|’, true, ‘right’); ?></title>
<link rel=”profile” href=”https://gmpg.org/xfn/11″>
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>”>
<link rel=”shortcut icon” href=”<?php echo get_stylesheet_directory_uri(); ?>/favicon.png” />
<!–[if lt IE 9]>
<script src=”<?php echo get_template_directory_uri(); ?>/js/html5.js”></script>
<![endif]–>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id=”wrapper”>
<div id=”page” class=”hfeed site”>
<header id=”masthead” class=”site-header” role=”banner”>
<h1 class=”site-title”>” rel=”home”><?php bloginfo(‘name’); ?></h1>
<h1 class=”menu-toggle”>m</h1>
<nav id=”primary-navigation” class=”site-navigation primary-navigation” role=”navigation”>
<?php _e(‘Skip to content’, ‘expositio’); ?>
<span id=”navigation-close”>✕</span>
<?php wp_nav_menu(array(‘theme_location’ => ‘primary’, ‘menu_class’ => ‘nav-menu’, ‘container_id’ => ‘top-main-menu’, ‘fallback_cb’ => false)); ?>
<?php wp_nav_menu(array(‘theme_location’ => ‘secondary’, ‘menu_class’ => ‘nav-menu’, ‘container_id’ => ‘top-right-menu’, ‘fallback_cb’ => false)); ?>
</nav>
<footer id=”colophon” class=”site-footer” role=”contentinfo”>
<div class=”site-info”>
<?php printf(__(‘Núria Ruiz’)
);
?>
</div><!– .site-info –>
<div class=”copyright”>© 2016</div>
</footer><!– #colophon –>
</header><!– #masthead –>
<div id=”header-helper”></div>
<div id=”main” class=”site-main”>
Thanks!