为了能免费使用又拍云的对象储存必须在网站页脚挂上他家的一个链接,但是B2 Pro需要修改源文件才行
添加方法:
1、找到父主题文件(模板设置文件)wp-content/themes/b2/Modules/Settings/Template.php搜索【公安备案号】在其后添加
$footer->add_field(array(
'name' => __( '其他', 'b2' ),
'id'=>'footer_upother',
'type' => 'file',
'options' => array(
'url' => true,
),
'default' => self::$default_settings['footer_upother'],
));
$footer->add_field(array(
'name' => __( '链接地址', 'b2' ),
'id'=>'upother_url',
'type' => 'text',
'default' => b2_get_option('template_footer','upother_url'),
));
2、找到子主题文件(页脚文件)wp-content\themes\b2child\footer.php搜索【$beian = b2_get_option(‘template_footer’,’footer_beian’);】在其后添加
$upother = b2_get_option('template_footer','footer_upother');
3、找到子主题文件(页脚文件)wp-content\themes\b2child\footer.php搜索【<?php if($gongan)】在其后添加
<?php if($upother){
echo '<span class="b2-dot">・</span><a class="b2-upother" rel="nofollow" target="__blank" href="'.b2_get_option('template_footer','upother_url').'"><img src="'.b2_get_option('template_footer','footer_upother').'"></a>';
}?>
本站所有文章,如无特殊说明或标注,均为本站原创发布。
任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。
如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。