вопрос
Как сделать что бы название новости было внутри span - Название новости
??
/*
=====================================================
Формирование speedbar
=====================================================
*/
if ($config['speedbar'] and ! isset ( $view_template )) {
$s_navigation = "<span itemscope itemtype=\"http://data-vocabulary.org/Breadcrumb\"><a href=\"{$config['http_home_url']}\" itemprop=\"url\"><span itemprop=\"title\"> <div class=\"fa fa-home\"></div >" . $config['short_title'] . "</span></a></span>";
if (intval($category_id)) $s_navigation .= " » " . get_breadcrumbcategories ( intval($category_id) );
elseif ($do == 'tags') {
if ($config['allow_alt_url']) $s_navigation .= " <span itemscope itemtype=\"http://data-vocabulary.org/Breadcrumb\"><a href=\"" . $config['http_home_url'] . "tags/\" itemprop=\"url\"><span class=\"current\" itemprop=\"title\">" . $lang['tag_cloud'] . "</span></a></span> " . $tag;
else $s_navigation .= " <span itemscope itemtype=\"http://data-vocabulary.org/Breadcrumb\"><a href=\"?do=tags\" itemprop=\"url\"><span class=\"current\" itemprop=\"title\">" . $lang['tag_cloud'] . "</span></a></span> " . $tag;
} elseif ($nam_e) $s_navigation .= " » " . $nam_e;
if ($titl_e) $s_navigation .= " » " . $titl_e;
else $s_navigation .= $page_extra;
$tpl->load_template ( 'speedbar.tpl' );
$tpl->set ( '{speedbar}', '<ul><li>' . stripslashes ( $s_navigation ) . '</li></ul>' );
$tpl->compile ( 'speedbar' );
$tpl->result['speedbar'] = str_replace("»","",$tpl->result['speedbar']);
$tpl->clear ();
}
?>
Как сделать что бы название новости было внутри span - Название новости
??