Реклама на сайте Advertise with us

Headspace2 и Google Webmaster

Расширенный поиск по форуму
 
Новая тема Новая тема   
Автор
Поиск в теме:



С нами с 13.08.08
Сообщения: 1538
Рейтинг: 1011

Ссылка на сообщениеДобавлено: 01/10/09 в 20:03       Ответить с цитатойцитата 

Гугл тут учудил - выдумал новое имя для мета-тэга верификации. Таперича вместо verify-v1 используется google-site-verification, и само собой, Headspace2 про это пока не знает. Тему править ни разу не интересно, потому что у меня сплоги на субдоменах под WP MU и одна тема юзается несколькими сплогами, поэтому поправил сам плагин. В общем, кому лень ждать, пока авторы плагина одуплятся - пользуйте патченый файл /wp-content/plugins/headspace2/modules/site/google_webmaster.php, позволяющий выбирать имя тэга:

Код:

<?php

/**
* HeadSpace
*
* @package HeadSpace
* @author John Godley
* @copyright Copyright (C) John Godley
**/

/*
============================================================================================================
This software is provided "as is" and any express or implied warranties, including, but not limited to, the
implied warranties of merchantibility and fitness for a particular purpose are disclaimed. In no event shall
the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or
consequential damages (including, but not limited to, procurement of substitute goods or services; loss of
use, data, or profits; or business interruption) however caused and on any theory of liability, whether in
contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of
this software, even if advised of the possibility of such damage.

For full license details see license.txt
============================================================================================================ */

class HSS_GoogleWebmaster extends HS_SiteModule
{
   var $code = '';

    var $metaname = 'verify-v1';

   function name ()
   {
      return __ ('Google Webmaster', 'headspace');
   }

   function description ()
   {
      return __ ('Adds Google Webmaster tracking code to your home page', 'headspace');
   }

   function run ()
   {
      add_filter ('wp_head', array (&$this, 'wp_head'));
   }

   function wp_head ()
   {
      // Only need to put this on the home page
      if ($this->code && is_front_page ())
         echo '<meta name="'.htmlspecialchars($this->metaname).'" content="'.htmlspecialchars ($this->code).'"/>'."\r\n";
   }

   function load ($data)
   {
      if (isset ($data['code']))
         $this->code = $data['code'];

        if (isset ($data['metaname']))
            $this->metaname = $data['metaname'];
   }

   function has_config () { return true; }

   function save_options ($data)
   {
      return array (
            'code' => $data['code'],
            'metaname' => $data['metaname'],
        );
   }

   function edit ()
   {
   ?>
   <tr>
      <th width="150"><?php _e ('Tracking code', 'headspace'); ?>:</th>
      <td>
         <input size="40" name="code" type="text" value="<?php echo htmlspecialchars ($this->code); ?>"/><br/>
         <span class="sub"><?php _e ('Enter Google Webmaster tracking code.', 'headspace'); ?></span>
      </td>
   </tr>
   <tr>
      <th width="150"><?php _e ('Meta tag name', 'headspace'); ?>:</th>
      <td>
            <select name="metaname">
                <?php
                    foreach (array(
                        'verify-v1',
                        'google-site-verification',
                    ) as $metaname) {
                        ?><option<?php if ($metaname == $this->metaname) { ?> selected="selected"<?php } ?>><?php echo htmlspecialchars ($metaname); ?></option><?php
                    }
                ?>
            </select><br />
         <span class="sub"><?php _e ('Select meta tag name.', 'headspace'); ?></span>
        </td>
    </tr>
   <?php
   }

   function file ()
   {
      return basename (__FILE__);
   }
}

?>

0
 
Новая тема Новая тема   

Текстовая реклама в форме ответа
Заголовок и до четырех строчек текста
Длина текста до 350 символов
Купить рекламу в этом месте!


Перейти:  



Спонсор раздела Стань спонсором этого раздела!

Реклама на сайте Advertise with us

Опросы

Рецепт новогоднего блюда 2022



Обсудите на форуме обсудить (11)
все опросы »