在谷歌上显示标题数据

时间:2017-12-08 20:51:23

标签: php wordpress meta

这是我的网站:

http://www.armonisencia.cl/site/

当您在Google上搜索“armonisencia”时,它会显示以下内容(您也可以在附图上看到它):

“致命错误:未捕获错误:调用未定义的函数... www.armonisencia.cl/site/ TraducirestapáginaFatal错误:未捕获错误:在/home/armonisencia/public_html/site/wp-content/themes/DIVI/header.php:16中调用未定义的函数elegant_description()堆栈跟踪:#0 / home / armonisencia / public_html / site / wp-includes / template.php(688):require_once()#1 ...“

也许是我的WordPress中的一些bug或其他东西,但我决定我不想寻找解决方案,我更喜欢做更简单的东西,我只是编辑了我的主题的header.php文件并留下了head元素像这样:

    <head>
<title>Armonisencia</title>
	  <meta charset="UTF-8">
	<meta name="description" content="Naturaleza que funciona">
	<meta name="keywords" content="Productos, Armonisencia">

	

	<?php $template_directory_uri = get_template_directory_uri(); ?>
	<!--[if lt IE 9]>
	<script src="<?php echo esc_url( $template_directory_uri . '/js/html5.js"' ); ?>" type="text/javascript"></script>
	<![endif]-->

	<script type="text/javascript">
		document.documentElement.className = 'js';
	</script>

	<?php wp_head(); ?>
</head>

我昨天做了这个改变,今天谷歌仍然向我显示相同的ulgy数据。我该如何解决?

这是我改变之前的看法

<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>" />
	<?php elegant_description(); ?>
	<?php elegant_keywords(); ?>
	<?php elegant_canonical(); ?>

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

	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

	<?php $template_directory_uri = get_template_directory_uri(); ?>
	<!--[if lt IE 9]>
	<script src="<?php echo esc_url( $template_directory_uri . '/js/html5.js"' ); ?>" type="text/javascript"></script>
	<![endif]-->

	<script type="text/javascript">
		document.documentElement.className = 'js';
	</script>

	<?php wp_head(); ?>
</head>

the error

1 个答案:

答案 0 :(得分:0)

谷歌显示的摘录告诉您错误的位置:

“致命错误:未捕获错误:在/home/armonisencia/public_html/site/wp-content/themes/DIVI/header.php:16中调用未定义的函数elegant_description()堆栈跟踪:#0 / home /armonisencia/public_html/site/wp-includes/template.php(688):require_once()#1 ..“

它说你试图在header.php中使用一个不存在的函数( elegant_description())。

Google抓取网站抓取信息,但不会立即发生(实际上最多可能需要30天)。您可以通过Google搜索控制台请求Google再次抓取您的网站。以下是Google提供的支持文档,可帮助您朝着正确的方向前进:https://support.google.com/webmasters/answer/6065812?hl=en