Insertar código AdSense en Graphene

  • Autor Autor nidiaSdesign
  • Fecha de inicio Fecha de inicio
N

nidiaSdesign

Beta
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Hola amigos! la verdad que para meter código a los temas pues laverdad estoy en ceros :frown: , necesito incrustar un bloque de anuncios AdSense de 728 X 15 en la barra superior del tema Graphene como se muestra en la imagen:


Pero no se donde insertar el código :hmmmm2: Ojalá me puedan a ayudar ¡Muchas Gracias de antemano!!!!

PD Este es el código que me muestra el editor de header.php :frown: :

<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content-main">
*
* @package WordPress
* @subpackage Graphene
* @since graphene 1.0
*/
global $graphene_settings;
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title><?php graphene_title(); ?></title>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<!--[if lte IE 6]>
<style>#container{background:none !important;}</style>
<script>
sfHover = function() {
var sfEls = document.getElementById("menu").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls.onmouseover=function() {
this.className+=" sfhover";
}
sfEls.onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
</script>
<![endif]-->
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if (is_singular() && get_option('thread_comments'))
wp_enqueue_script('comment-reply');

/* Add a print style only for single pages/posts
* and if the theme option is enabled.
*/
if (is_singular() && $graphene_settings['print_css'])
add_action('wp_print_styles', 'graphene_print_style');

/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head><?php flush(); ?>
<body <?php body_class(); ?>>

<?php if (!get_theme_mod('background_image', false) && !get_theme_mod('background_color', false)) : ?>
<div class="bg-gradient">
<?php endif; ?>

<div id="container">

<?php if ($graphene_settings['hide_top_bar'] != true) : ?>
<div id="top-bar">

<div id="rss" class="clearfix">
<?php if ($graphene_settings['hide_feed_icon'] != true) : ?>
<?php $custom_feed_url = ($graphene_settings['custom_feed_url']) ? $graphene_settings['custom_feed_url'] : get_bloginfo('rss2_url'); ?>
<a href="<?php echo $custom_feed_url; ?>" title="<?php printf(esc_attr__("Subscribe to %s's RSS feed", 'graphene'), get_bloginfo('name')); ?>" class="rss_link"><span><?php _e('Subscribe to RSS feed', 'graphene'); ?></span></a>
<?php endif; ?>
<?php do_action('graphene_feed_icon'); ?>
</div>


<?php
/**
* Retrieves our custom search form.
*/
?>
<?php if (($search_box_location = $graphene_settings['search_box_location']) && $search_box_location == 'top_bar' || $search_box_location == '') : ?>
<div id="top_search">
<?php get_search_form(); ?>
<?php do_action('graphene_top_search'); ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>

<?php
if ($post)
$post_id = $post->ID;
else
$post_id = false;
$header_img = apply_filters('graphene_header_image', graphene_get_header_image($post_id));

/*
* Check if the page uses SSL and change HTTP to HTTPS if true
*
* Experimental. Let me know if there's any problem.
*/
if (is_ssl() && stripos($header_img, 'https') === false) {
$header_img = str_replace('http', 'https', $header_img);
}

// Gets the colour for header texts, or if we should display them at all
if ('blank' == get_theme_mod('header_textcolor', HEADER_TEXTCOLOR) || '' == get_theme_mod('header_textcolor', HEADER_TEXTCOLOR))
$style = ' style="display:none;"';
else
$style = ' style="color:#' . get_theme_mod('header_textcolor', HEADER_TEXTCOLOR) . ';"';
?>
<div id="header" style="background-image:url(<?php echo $header_img; ?>);">
<?php if ($graphene_settings['link_header_img']) : ?>
<a href="<?php echo home_url(); ?>" id="header_img_link" title="<?php esc_attr_e('Go back to the front page', 'graphene'); ?>">&nbsp;</a>
<?php endif; ?>

<?php /* Header widget area */
if ($graphene_settings['enable_header_widget'] && is_active_sidebar('header-widget-area')) {
echo '<div class="header-widget">';
dynamic_sidebar('header-widget-area');
echo '</div>';
}
?>

<?php /* The site title and description */
if (is_singular() && !is_front_page()) {
$title_tag = 'h2';
$desc_tag = 'h3';
} else {
$title_tag = 'h1';
$desc_tag = 'h2';
}
?>
<?php echo '<'.$title_tag; ?> <?php echo $style; ?> class="header_title"><a <?php echo $style; ?> href="<?php echo home_url(); ?>" title="<?php esc_attr_e('Go back to the front page', 'graphene'); ?>"><?php bloginfo('name'); ?></a></<?php echo $title_tag; ?>>
<?php echo '<'.$desc_tag; ?> <?php echo $style; ?> class="header_desc"><?php bloginfo('description'); ?></<?php echo $desc_tag; ?>>
<?php do_action('graphene_header'); ?>
</div>
<div id="nav">
<?php /* The navigation menu */ ?>
<?php
/* Header menu */
$args = array(
'container' => '',
'menu_id' => 'header-menu',
'menu_class' => 'menu clearfix',
'fallback_cb' => 'graphene_default_menu',
'depth' => 5,
'theme_location' => 'Header Menu',
);
wp_nav_menu(apply_filters('graphene_header_menu_args', $args));

/* Secondary menu */
$args = array(
'container' => '',
'menu_id' => 'secondary-menu',
'menu_class' => 'menu clearfix',
'fallback_cb' => 'none',
'depth' => 5,
'theme_location' => 'secondary-menu',
);
wp_nav_menu(apply_filters('graphene_secondary_menu_args', $args));
?>


<?php do_action('graphene_top_menu'); ?>

<?php if (($search_box_location = $graphene_settings['search_box_location']) && $search_box_location == 'nav_bar') : ?>
<div id="top_search">
<?php get_search_form(); ?>
<?php do_action('graphene_top_search'); ?>
</div>
<?php endif; ?>
</div>

<?php do_action('graphene_before_content'); ?>

<div id="content" class="clearfix">
<?php do_action('graphene_before_content-main'); ?>

<?php

/* Sidebar1 on the left side? */
if ( in_array(graphene_column_mode(), array('two-col-right', 'three-col-right', 'three-col-center')) ){
get_sidebar();
}
/* Sidebar2 on the left side? */
if ( graphene_column_mode() == 'three-col-right' ){
get_sidebar('two');
}

?>

<div id="content-main" class="clearfix">
<?php do_action('graphene_top_content'); ?>
 
Mas o menos por aquí:
PHP:
<div id="top-bar">
  <div id="rss" class="clearfix">
    <?php if ($graphene_settings['hide_feed_icon'] != true) : ?>
      <?php $custom_feed_url = ($graphene_settings['custom_feed_url']) ? $graphene_settings['custom_feed_url'] : get_bloginfo('rss2_url'); ?>
      <a href="<?php echo $custom_feed_url; ?>" title="<?php printf(esc_attr__("Subscribe to %s's RSS feed", 'graphene'), get_bloginfo('name')); ?>" class="rss_link"><span><?php _e('Subscribe to RSS feed', 'graphene'); ?></span></a>
    <?php endif; ?>
    <?php do_action('graphene_feed_icon'); ?>
  </div>


  <div id="adsense1">
    [aqui va el código]
  </div>

  <?php
    /**
    * Retrieves our custom search form.
    */
  ?>
  <?php if (($search_box_location = $graphene_settings['search_box_location']) && $search_box_location == 'top_bar' || $search_box_location == '') : ?>
    <div id="top_search">
      <?php get_search_form(); ?>
      <?php do_action('graphene_top_search'); ?>
    </div>
  <?php endif; ?>
</div>

Lo pongo en un capa div para que puedas ajustarlo según tus necesidades...
 
¡¡Muchas Gracias!! Ya inserté el código y ya se refleja, excelente :congrats: .

Ya pueden cerrar el tema, y muchas gracias de nuevo.

¡Saludos!