一、搜索时间因子介绍
官方说明:
目前站外存在落地页页面时间标注不清、页面无时间等对用户浏览体验不友好情况。开放对落地页时间因子的提交规范,有助于帮助搜索用户获得更满意的搜索浏览体验,帮助优质站点获取更多展现机会。文章源自玩技e族-https://www.playezu.com/153614.html
官方示例代码:文章源自玩技e族-https://www.playezu.com/153614.html
<meta property="bytedance:published_time" content="2014-12-11T12:28:44+01:00" /> <meta property="bytedance:lrDate_time" content="2017-03-13T15:01:40+01:00" /> <meta property="bytedance:updated_time" content="2017-03-13T15:01:40+01:00" />
其中:文章源自玩技e族-https://www.playezu.com/153614.html
- published_time为内容发布时间;
- updated_time为内容更新时间;
- lrDate_time为内容最新回复时间。
对于一般网站而言,我们只需要添加published_time
和updated_time
即可,也就是添加发布时间和更新时间这两个时间因子。另外需要额外关注的就是时间格式一定要正确。文章源自玩技e族-https://www.playezu.com/153614.html
官方示例代码我们不能直接用,需要修改为PHP代码,继续看下文。文章源自玩技e族-https://www.playezu.com/153614.html
二、头条搜索时间因子改造
WordPress程序比较灵活,改造的方法有很多,这里分享三种方法,三种方法选择一种即可。这里主要是考虑到大家对WordPress的掌握程度不同,三种方法也是由难到易。文章源自玩技e族-https://www.playezu.com/153614.html
此外,本次分享的代码只会在文章和页面中添加时间因子,如果有其他需要,可以在此基础上进行修改。文章源自玩技e族-https://www.playezu.com/153614.html
1、方法一
编辑主题的header.php文件,在</head>
标签前面添加以下代码:文章源自玩技e族-https://www.playezu.com/153614.html
<?php if ( is_single() || is_page() ) { ?> <meta property="bytedance:published_time" content="<?php echo get_the_time('Y-m-d\TH:i:s+08:00'); ?>" /> <meta property="bytedance:updated_time" content="<?php echo get_the_modified_time('Y-m-d\TH:i:s+08:00'); ?>" /> <?php } ?>
保存即可生效。文章源自玩技e族-https://www.playezu.com/153614.html
2、方法二
编辑主题的functions.php文件,在文件末尾添加以下代码:文章源自玩技e族-https://www.playezu.com/153614.html
add_action( 'wp_head', 'toutiao_search_time_factor' ); function toutiao_search_time_factor() { if ( is_single() || is_page() ) { echo '<meta property="bytedance:published_time" content="',get_the_time('Y-m-d\TH:i:s+08:00'),'" />',"\r\n"; echo '<meta property="bytedance:updated_time" content="" content="',get_the_modified_time('Y-m-d\TH:i:s+08:00'),'" />',"\r\n"; } }
保存即可生效。
3、方法三
此方法是最容易的方法,因为是以插件的方式提供给大家。下载后,安装并启用即可生效。
下载地址:https://filedown.me/WordPress/Plugin/toutiao-search-time-factor.zip
备用地址:https://new.filedown.me/wordpress/plugin/toutiao-search-time-factor.zip
最后更新时间:2021.10.09
添加代码或者启动插件后,我们可以打开网站的任意一篇文章,查看其网页源代码,来判断是否成功。如下图所示,出现类似代码时表示已成功。
评论