-
AuthorPosts
-
October 5, 2014 at 8:54 am #118827
Hello,
In _header.php, line 20 , there is this code:
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
What does this code do exactly?
Honestly I had an alert recently from my website server admin. He told me you had CPU overload because of many pingback issues, specially on xmlrpc.php in main root of website.
May X theme cause this problem? What happens if I remove mentioned line?
October 5, 2014 at 11:11 am #118871Hi there,
You can find more information about this by checking this link:
http://codex.wordpress.org/Function_Reference/get_bloginfo
Just search for pingback in the page.
And here is what pingback means:
http://www.hixie.ch/specs/pingback/pingback
Usually it is for SEO purposes and if you think it will do good for yout o remove it, that will not affect your website regarding front end. But it will affect SEO.
Here is more information about SEO: http://en.wikipedia.org/wiki/Search_engine_optimization
Hope it helps.
October 6, 2014 at 2:18 am #119130Hello,
Thanks for these hints 🙂
I think it could be ignored for my weblog!
May I have this omission in child theme to avoid refreshing this file (_header.php) after any update!?October 6, 2014 at 3:58 am #119197Hi,
Yes, first copy the file x/framework/views/global/_header.php
into x-child-ethos/framework/views/globalThen edit the file x-child-ethos/framework/views/global/_header.php
and remove the line <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>That should do it.
Best Regards
October 6, 2014 at 4:45 am #119239Thank you so much!
October 6, 2014 at 4:53 am #119248You’re welcome!
-
AuthorPosts