Cambiar el logotipo de la cabecera
-
Hola he instalado esta plantilla http://demo.rockettheme.com/wordpress/?theme=mercado y estoy intentando cambiar donde la plantilla pone Mercado por mi logotipo.
Lo tengo que hacer en codigo php y no soy capaz. Podriais indicarme cómo hacerlo. El codigo php del header es este:
<?php
/**
* @version 1.2 November 13, 2012
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 – 2012 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
?>
<!DOCTYPE html PUBLIC «-//W3C//DTD XHTML 1.0 Transitional//EN» «http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd»>
<?php global $gantry; ?>
<html xmlns=»http://www.w3.org/1999/xhtml» xml:lang=»<?php echo $gantry->language; ?>» lang=»<?php echo $gantry->language;?>» >
<head>
<?php$gantry->displayHead();
$gantry->addStyles(array(‘template.css’,’wordpress.css’,’wp.css’,’custom.css’));if ($gantry->browser->platform != ‘iphone’)
$gantry->addInlineScript(‘window.addEvent(«domready», function(){ new SmoothScroll(); });’);?>
</head>
<body <?php echo $gantry->displayBodyTag(array(‘bodyLevel,style’)); ?>>
<div id=»rt-page-surround»>
<div class=»rt-container»>
<div id=»rt-page-background»>
<div id=»rt-header-surround» class=»rt-background-colors»>
<?php /** Begin Top **/ if ($gantry->countModules(‘top’)) : ?>
<div id=»rt-top»>
<?php echo $gantry->displayModules(‘top’,’standard’,’standard’); ?>
<div class=»clear»></div>
</div>
<?php /** End Top **/ endif; ?>
<?php /** Begin Header **/ if ($gantry->countModules(‘header’)) : ?>
<div id=»rt-header»>
<?php echo $gantry->displayModules(‘header’,’standard’,’standard’); ?>
<div class=»clear»></div>
</div>
<?php /** End Header **/ endif; ?>
<?php /** Begin Feature **/ if ($gantry->countModules(‘feature’)) : ?>
<div id=»rt-feature»>
<?php echo $gantry->displayModules(‘feature’,’standard’,’standard’); ?>
<div class=»clear»></div>
</div>
<?php /** End Feature **/ endif; ?>
<?php /** Begin Utility **/ if ($gantry->countModules(‘utility’)) : ?>
<div id=»rt-utility»>
<?php echo $gantry->displayModules(‘utility’,’standard’,’standard’); ?>
<div class=»clear»></div>
</div>
<?php /** End Utility **/ endif; ?>
<?php /** Begin Drawer **/ if ($gantry->countModules(‘drawer’)) : ?>
<div id=»rt-drawer»>
<?php echo $gantry->displayModules(‘drawer’,’standard’,’standard’); ?>
<div class=»clear»></div>
</div>
<?php /** End Drawer **/ endif; ?>
</div>
<div id=»rt-body-background»>
<div id=»rt-sidepanel-surround» <?php echo $gantry->displayClassesByTag(‘rt-sidepanel-surround’); ?>>
<div id=»rt-sidepanel»>
<div id=»rt-sidepanel-bg»>
<div id=»rt-sidepanel-gradient»>
<div id=»rt-body-surround» class=»standard»>
<div id=»rt-body-content» class=»rt-body-colors»>
<div class=»rt-body-container»>
<?php /** Begin Navigation **/ if ($gantry->countModules(‘navigation’)) : ?>
<div id=»rt-navigation»>
<?php echo $gantry->displayModules(‘navigation’,’basic’,’basic’); ?>
<div class=»clear»></div>
</div>
<?php /** End Navigation **/ endif; ?>
<?php /** Begin Breadcrumbs **/ if ($gantry->countModules(‘breadcrumb’)) : ?>
<div id=»rt-breadcrumbs»>
<?php echo $gantry->displayModules(‘breadcrumb’,’basic’,’breadcrumbs’); ?>
<div class=»clear»></div>
</div>
<?php /** End Breadcrumbs **/ endif; ?>
<?php /** Begin Showcase **/ if ($gantry->countModules(‘showcase’)) : ?>
<div id=»rt-showcase»>
<?php echo $gantry->displayModules(‘showcase’,’standard’,’standard’,9); ?>
<div class=»clear»></div>
</div>
<?php /** End Showcase **/ endif; ?>
<?php /** Begin Main Top **/ if ($gantry->countModules(‘maintop’)) : ?>
<div id=»rt-maintop» class=»scroller-padding»>
<?php if (controlsDisplay(‘maintop’)): ?>
<div class=»controls»><div class=»controls2″><span class=»down»></span><span class=»up»></span></div></div>
<div class=»scroller-enabled»>
<?php endif; ?>
<?php echo $gantry->displayModules(‘maintop’,’standard’,’scroller’,9); ?>
<?php if (controlsDisplay(‘maintop’)): ?>
</div>
<?php endif; ?>
<div class=»clear»></div>
</div>
<?php /** End Main Top **/ endif; ?>
<?php ob_start(); ?>Muchas gracias
- El debate ‘Cambiar el logotipo de la cabecera’ está cerrado a nuevas respuestas.