新安装的wordpress没有关键词Keywords和元描述Description,需要自行添加,方法一般有两种,第一种是靠第三方插件,第二种就是今天要介绍的纯代码。有代码洁癖的可以考虑这种。本代码主要功能就是主页自主设定关键词和元描述,文章也采集标签做关键词keywords,文章内容的前100字做元描述Description。
找到wordpress模板中的hearder.php,在“<head>”与“</head>”标签中添加如下代码: 继续阅读
新安装的wordpress没有关键词Keywords和元描述Description,需要自行添加,方法一般有两种,第一种是靠第三方插件,第二种就是今天要介绍的纯代码。有代码洁癖的可以考虑这种。本代码主要功能就是主页自主设定关键词和元描述,文章也采集标签做关键词keywords,文章内容的前100字做元描述Description。
找到wordpress模板中的hearder.php,在“<head>”与“</head>”标签中添加如下代码: 继续阅读
1、安装插件
2、找到主题文件夹的functions.php文件中的以下代码
<nav id="<?php echo esc_attr( $html_id ); ?>" class="navigation"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentytwelve' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?></div>
替换为:
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
在自定义主题-额外CSS处填入如下代码
.button {
border-radius: 5px;
color: #ffffff!important;
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
padding: 7px 10px;
background-color: #3bc492;
text-decoration: none!important;
text-indent: 0!important;
}
.button2 {
border-radius: 5px;
color: #ffffff!important;
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
padding: 7px 10px;
background-color: #CC00CC;
text-decoration: none!important;
text-indent: 0!important;
}
在编辑器中使用如下格式调用:
<p style="text-align: center;"><a class="button" href="https://google.com" target="_blank" rel="noopener">MediaFire</a></p>
<p style="text-align: center;"><a class="button2" href="https://www.baidu.com" target="_blank" rel="noopener">77File</a></p>
安装 Redis 缓存
我这次安装 Redis 缓存选择了 Redis Object Cache 这个插件。
Redis Object Cache
和你在别的网站上看到的教程相比,这个插件提供了一个可视化的查看和管理的方式,对于懒得手动操作和编辑代码的人来说,更加友好。
安装插件后,启用插件,你可以在设置中的「Redis」设置页面找到如下的界面:
设置页面
点击 Enable Object Cache,就会开启 Redis 的 Object Cache 。 继续阅读