前言
网站的SEO非常重要,如果SEO做不好,那一个网站只有我们自己看了,别人都看不到,所以,我们可以在网站的侧边栏加一个百度一下协助SEO优化功能,让用户协助我们做好SEO优化,下面看一下效果
效果展示
添加方法
首先在 wordpress 后台小工具中添加自定义 HTML代码
路径:WordPress 后台——外观——小工具——自定义 HTML——复制代码粘贴代码进去——首页-侧边栏
1,添加小工具-自定义 HTML 代码:
<!-- 侧边栏百度一下开始 -->
<div class="searchs">
<div class="tit"><strong>协助一下SEO优化</strong></div>
<mip-form method="get" url="https://www.baidu.com/s" class="mip-element mip-layout-container">
<form action="https://www.baidu.com/s" method="GET" target="_blank">
<input type="text" name="wd" class="gold-text" placeholder="请输入搜索关键词" value="慕云乘风博客">
<input type="submit" value="百度搜索">
</form>
</mip-form>
</div>
<!-- 侧边栏百度一下结束 -->
<script>
// 根据系统主题自动切换白天/夜晚模式
function setThemeMode() {
var isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
var body = document.body;
if (isDarkMode) {
body.classList.add('dark-mode');
} else {
body.classList.remove('dark-mode');
}
}
document.addEventListener('DOMContentLoaded', function() {
setThemeMode();
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', setThemeMode);
});
</script>
2,在自定义 CSS 样式中添加下面代码:
/* 百度一下协助SEO模块开始 */
.searchs {
background-color: transparent; /* 全透明背景 */
border: 1px solid #eaeaea;
padding: 15px;
overflow: hidden;
transition: all 0.3s;
border-radius: 4px;
position: relative;
margin: 0 0 15px 0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.mip-layout-container, .mip-layout-fixed-height {
margin: 0;
display: block;
position: relative;
}
mip-form form {
position: relative;
}
.searchs input[type="text"] {
border: #45B6F7 1px solid;
border-radius: 4px;
width: calc(100% - 100px);
padding: 10px;
margin-right: 10px;
color: #DAA520; /* 金色字体 */
}
.searchs input {
outline: none;
}
.searchs input[type="submit"] {
background-color: #45B6F7;
color: #fff;
font-size: 13px;
height: 31px;
line-height: 31px;
padding: 0 10px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.searchs input[type="submit"]:hover {
background-color: #3a9fce;
}
.tit {
background-color: #FF5E52;
position: relative;
top: -15px;
display: inline-block;
color: #fff;
padding: 4px 15px;
font-size: 14px;
border-radius: 4px;
}
/* 深色模式样式 */
@media (prefers-color-scheme: dark) {
.searchs {
border-color: #444;
background-color: transparent; /* 全透明背景 */
}
.tit {
background-color: #ff6f6f;
}
.searchs input[type="text"] {
background-color: transparent; /* 全透明背景 */
border-color: #444;
color: #DAA520; /* 金色字体 */
}
.searchs input[type="submit"] {
background-color: #66bb6a;
}
.searchs input[type="submit"]:hover {
background-color: #57a25b;
}
}
/* 百度一下协助SEO模块结束 */
© 版权声明
THE END