我一直试图在这个小小的东西上工作将近一整天,所以任何帮助都会受到高度赞赏
你可以在这里看到面包屑的样子: https://www.bitcoinhoy.co/criptomonedas/ethereum/
我设法找到相关的php文件,这里是代码:
enter code here
<!-- ** Breadcrumb ** -->
<?php
if( !empty( $global_breadcrumb ) ) {
if(empty($settings)) { $settings['enable-sub-title'] = true; }
if( isset( $settings['enable-sub-title'] ) && $settings['enable-sub-title'] ) {
$breadcrumbs = array();
$bstyle = digibit_cs_get_option( 'breadcrumb-style', 'default' );
$separator = '<span class="'.digibit_cs_get_option( 'breadcrumb-delimiter', 'fa default' ).'"></span>';
if( is_singular('post') ){
$cat = get_the_category();
$cat = $cat[0];
$breadcrumbs[] = get_category_parents( $cat, true, $separator );
}
$breadcrumbs[] = the_title( '<span class="current">', '</span>', false );
$bcsettings = isset( $settings['breadcrumb_background'] ) ? $settings['breadcrumb_background'] : array();
$style = digibit_breadcrumb_css( $bcsettings );
digibit_breadcrumb_output ( the_title( '<h1>', '</h1>',false ), $breadcrumbs, $bstyle, $style );
}
}
?><!-- ** Breadcrumb End ** -->
任何想法如何将“主页”文本修改为其他内容?
答案 0 :(得分:0)
看起来Digibit是一个优质主题。修改主题文件可能不是一个好主意,因为如果他们更新主题,它将破坏你所做的修改。
你可以做的是在你的CSS中添加它(可能在Customize&gt; Additional CSS中):
.breadcrumb a:first-child {
font-size: 0;
}
.breadcrumb a:first-child:after {
content: "Something Else";
font-size: 14px;
}