5

我目前对微数据和 schema.org 有点困惑。microdata 和 schema.org 是一样的吗?我阅读了GoogleMicrosoft文档,但这并没有帮助我了解这两个名称之间的区别。

到目前为止,我理解这一点,我已经生成了这个 HTML 代码:

<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
 <a href="/" itemprop="url"><span itemprop="title">My Page</span></a>
</span>
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
 <a href="/cat1" itemprop="url"><span itemprop="title">Category 1</span></a>
</span>
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
 <a href="/cat1/content" itemprop="url"><span itemprop="title">Content</span></a>
</span>

在我看来,开销太大了,但如果搜索结果看起来不错,那也没关系。是否可以减少 html 代码的数量?

另外,如果我不需要,搜索引擎如何检测两条不同的路径?

我的下一个问题是我想将此格式应用于drupal 面包屑。我在网上找到了这个修复,我试图将它包含到我自己的 SEO 模块中,如下所示:

function mymod_page_alter(&$variables) {
    if (!isset($variables['breadcrumb'])) {
        $variables['breadcrumb'] = theme('my_microdata', array('breadcrumb' => drupal_get_breadcrumb()));
    }
}
function mymod_theme($existing, $type, $theme, $path) {
  return array(
    'my_microdata' => array(
     'variables' => array('breadcrumb' =>array()),
    ),
  );
}
function mymod_menu_breadcrumb_alter(&$active_trail, $item){
  foreach($active_trail as $id=>$active_trail_item){
    $active_trail[$id]['localized_options']['attributes']['itemprop'][]="url";
  }
}
function theme_my_microdata($variables){
 $breadcrumb=$variables['breadcrumb'];
print_r(debug_backtrace());
 $output="*+*+*+*+*";
  if (!empty($breadcrumb)) {
    // Provide a navigational heading to give context for breadcrumb links to
    // screen-reader users. Make the heading invisible with .element-invisible.
    $output = '<h2 class="element-invisible">' . t('You are here') . '</h2>';
    $output .= '<div class="breadcrumb">';
    $separator="";
    foreach($breadcrumb as $breadcrumb_item){
      $output.='<span typeof="datav:Breadcrumb">'.$separator.$breadcrumb_item."</span>";
      $separator="»";
    }
    $output .='</div>';
  }

    return $output."xXxXxXx";
}

到目前为止,我检查了所有这些代码是否已执行。但是这个主题不适用于我的页面。为什么该代码不起作用?这可能与模块有关breadcrumb吗?我知道这个输出会是垃圾,但我看不到结果。

如果我猜对了,那就是由theme.inc第 1682ff 行theme_breadcrumb(...)而不是我的代码创建的输出。

如果有人可以帮助我,那就太好了,如果你不知道我的问题的所有答案!

4

1 回答 1

10

microdata 和 schema.org 是一样的吗?

不,他们不是!

Microdata 是一个WHATWG html 规范。这是为了让计算机更容易阅读文档的内容。

Schema.org 是用于描述项目的词汇表。Schema.org 由 Bing、Google 和 Yahoo 推出。

http://en.wikipedia.org/wiki/Microdata_(HTML)

http://www.w3.org/TR/html5/microdata.html

http://schema.org/

是否可以减少 html 代码的数量?

查看 schema.org 中用于标记 WebPage 项的示例代码:http: //schema.org/WebPage

<body itemscope itemtype="http://schema.org/WebPage">
...
<div itemprop="breadcrumb">
  <a href="category/books.html">Books</a> >
  <a href="category/books-literature.html">Literature & Fiction</a> >
  <a href="category/books-classics">Classics</a>
</div>

搜索引擎如何检测两条不同的踪迹

如果您使用上述来自 schema.org 的示例,则您标记的是一条路径而不是单个链接。如果您标记两条路径,它们都将被识别为两条单独的路径。(或者至少应该是)

为什么该代码不起作用?

我认为这个问题应该与这篇文章分开,并在另一个帖子中提出。我不熟悉drupal,一些可以回答有关微数据问题的人甚至不了解PHP。

于 2012-04-29T15:52:59.277 回答