下面是一张与 “360手机无法推送” 和 “360搜索网站收录的删掉” 相关的图片:
<meta name="robots" content="index,follow">
:表示允许搜索引擎对页面进行索引和跟进。<meta name="description" content="Your page description should be less than 155 characters long.">
:页面描述,不要超过155个字符。<meta name="keywords" content="keyword1, keyword2, keyword3">
:关键词,为搜索引擎提供参考。<meta name="viewport" content="width=device-width, initial-scale=1.0">
:viewport定义该网页的视图窗口,width=device-width表示宽度等于设备宽度。<meta name="author" content="Your Name">
:作者。<meta property="og:title" content="Your page title">
:用于在社交媒体平台等大型网站对话框上显示,表示页面标题。<meta property="og:url" content="https://www.your-website-url.com">
:定义页面URL。<meta property="og:image" content="https://www.your-image-url.com">
:用于在社交媒体平台等大型网站对话框上显示,表示页面缩略图。<meta name="robots" content="noindex,nofollow">
:表示该页面不被搜索引擎索引和跟进。<meta name="googlebot" content="noindex,nofollow">
:表示页面不被谷歌爬虫索引和跟进。<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Product",
"name": "product name",
"image": "image URL",
"description": "product description",
"sku": "product SKU",
"brand": {
"@type": "Brand",
"name": "brand name",
"logo": "brand logo URL"
},
"offers": {
"@type": "Offer",
"price": "product price",
"priceCurrency": "CNY",
"availability": "InStock",
"seller": {
"@type": "Organization",
"name": "seller name"
}
}
}
</script>
:表示为产品,包括产品的名称、图片、描述、SKU、品牌、价格、货币、库存状态、卖家等。<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"headline": "post title",
"image": "featured image URL",
"datePublished": "publication date",
"description": "post excerpt",
"author": {
"@type": "Person",
"name": "author name"
}
}
</script>
:表示为博客文章,包括文章标题、特色图片、发布日期、摘要和作者名字。<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebPage",
"name": "page title",
"description": "page description",
"url": "page URL",
"image": "thumbnail image URL"
}
</script>
:表示为网页,包括页面标题、描述、URL和缩略图。