Jump to content
  • 0

Нужны ли такие ссылки?


fowl
 Share

Question

В шапке есть вот такой код.


<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://site.ru/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://site.ru/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='Лицензирование' href='http://site.ru/litsenzirovanie.html' />
<link rel='next' title='Трудовой договор' href='http://site.ru/trudovoy-dogovor.html' />
<link rel='shortlink' href='http://site.ru/?p=618' />

Зачем это нужно? Можно ли их удалить без вреда для сайта и как это сделать??

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

В шапке есть вот такой код.


<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://site.ru/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://site.ru/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='Лицензирование' href='http://site.ru/litsenzirovanie.html' />
<link rel='next' title='Трудовой договор' href='http://site.ru/trudovoy-dogovor.html' />
<link rel='shortlink' href='http://site.ru/?p=618' />

Зачем это нужно? Можно ли их удалить без вреда для сайта и как это сделать??

Обычно такие ссылки содержат в себе дополнительную информацию, как, например, rel="prev" указывает на предыдущий, относительной страницы на которой вы находитесь, раздел какой-то статьи или какого-то документа, соответственно next - на следующий. Полезны они для поисковиков.

Link to comment
Share on other sites

  • 0

Удалить можно, добавьте эти строчки в файл functions.php вашей темы(дизайн -> редактор -> functions.php):


remove_action( 'wp_head', 'rsd_link' );
remove_action( 'wp_head', 'wlwmanifest_link' );
remove_action( 'wp_head', 'index_rel_link' );
remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );
remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );
remove_action( 'wp_head', 'adjacent_posts_rel_link', 10, 0 );
remove_action( 'wp_head', 'wp_generator' );

этот код удалит не только эти теги, а также другие, которые только мешают.

Link to comment
Share on other sites

  • 0

После добавления кода файл functions.php вышлядит так, но это не помогло!!

<?php

// Translations can be filed in the /lang/ directory
load_theme_textdomain( 'themejunkie', TEMPLATEPATH . '/lang' );

require_once(TEMPLATEPATH . '/includes/sidebar-init.php');
require_once(TEMPLATEPATH . '/includes/custom-functions.php');
require_once(TEMPLATEPATH . '/includes/post-thumbnails.php');

require_once(TEMPLATEPATH . '/includes/theme-options.php');
// require_once(TEMPLATEPATH . '/includes/theme-comments.php');
require_once(TEMPLATEPATH . '/includes/theme-widgets.php');

require_once(TEMPLATEPATH . '/functions/theme_functions.php');
require_once(TEMPLATEPATH . '/functions/admin_functions.php');


remove_action( 'wp_head', 'feed_links_extra', 3 );
remove_action( 'wp_head', 'feed_links', 2 );
remove_action( 'wp_head', 'rsd_link' );
remove_action( 'wp_head', 'wlwmanifest_link' );
remove_action( 'wp_head', 'index_rel_link' );
remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );
remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );
remove_action( 'wp_head', 'adjacent_posts_rel_link', 10, 0 );
remove_action( 'wp_head', 'wp_generator' );
?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy