我目前关于微数据和schema.org有点困惑。 是微观数据和schema.org一样吗? 我读了谷歌和微软的文档,但没有帮助我得到这两个名字之间的差别。
到目前为止,我理解这一点我自己制作的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的breadcrumps。 我在网上找到这个补丁 ,我想包括我自己的搜索引擎优化模块是这样的:
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(...)
而不是我的代码。
这将是很好,如果有人可以帮助我,如果你还不清楚我的问题的所有答案!