共计 983 个字符,预计需要花费 3 分钟才能阅读完成。
第一步:是产品页代码
使用的是默认模版。如果需要其他模版
直接复制 类似
<div><div><script type=”application/ld+json”></div><div> {!! json_encode([</div><div> “@context” => “https://schema.org”,</div><div> “@type” => “Article”,</div><div> “headline” => $page->description->title,</div><div> “author” => [</div><div> “@type” => “Person”,</div><div> “name” => $page->author,</div><div> ],</div><div> “datePublished” => $page->created_at,</div><div> “publisher” => [</div><div> “@type” => “Organization”,</div><div> “name” => system_setting(‘base.site_name’),</div><div> “logo” => [</div><div> “@type” => “ImageObject”,</div><div> “url” => asset(‘image/logo.png’),</div><div> ],</div><div> ],</div><div> “image” => isset($page->images) && is_array($page->images) ? array_column($page->images, ‘preview’) : ($page->image ?? ”),</div><div> “description” => $page->description->meta_description ?: $page->description->summary,</div><div> ], JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT) !!}</div><div> </script></div></div><div></div>
粘贴到模版文件里面吧
修改文件 themes\default\product\product.blade.php 这个文件
直接替换该文件
代码在 github 直接查看 github
https://github.com/heiyuan0801/index
第二个是文章
在 themes\default\pages 这个目录下 直接替换
正文完