从Google搜索结果描述中删除日期 时间:2013-12-04 作者:JoaMika 如何从我帖子的谷歌搜索结果中删除日期?这与WordPress有关还是特定于主题? 3 个回复 最合适的回答,由SO网友:Ravinder Kumar 整理而成 粘贴此代码functions.phpadd_filter( \'wpseo_show_date_in_snippet_preview\', false); //Returning false on this will prevent the date from showing up in the snippet preview. 注:WordPress SEO api SO网友:pendjer 我想我明白了。导航到SEO>Titles and Metas 并删除%%date%% 从…起Meta description template 领域 SO网友:James Ross 不幸的是,公认的答案是错误的。(见1。)下面是我找到的有效答案。(来源于此处2。)add_action(\'wpseo_dc_\'.\'DC.date.issued\', \'__return_false\'); // Premium only add_filter( \'wpseo_og_article_published_time\', \'__return_false\' ); add_filter( \'wpseo_og_article_modified_time\', \'__return_false\' ); add_filter( \'wpseo_og_og_updated_time\', \'__return_false\' ); https://kb.yoast.com/kb/date-appears-search-results/https://gist.github.com/amboutwe/e5b83cd990b5c1bc4015c20f5e3cd754 结束 文章导航