네이버 캐러셀 질문올립니다.
안녕하십니까 선배님들.
제가 운영중인 사이트의 네이버 캐러셀이 미노출로 바뀌었습니다.
기존에 잘 올라가있던 캐러셀이 내려가서, 재수집 요청을 매일 하고있으나
2주넘게 노출되지 않아 선배님들의 견문이 필요합니다.
현재 노출방식은
head.php 에서
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
식의 작성법과
<?php
if($define_index == "1"){
echo latest('seo_lat', 'seo_hidden', 7, 23);
}
?>
식의 게시판 연동으로 구현해둔 상태입니다.
답변 2개 / 댓글 2개
https://developers.google.com/search/docs/appearance/structured-data?hl=ko
오류가 없는지 점검 해보세요.
오류가 없어도 네이버가 캐러셀은 출력해주지 않을 수 있습니다.
답변에 대한 댓글 1개
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"url": "https://example.com/item1",
"name": "상품 또는 게시글 제목",
"image": "https://example.com/image1.jpg"
},
{
"@type": "ListItem",
"position": 2,
"url": "https://example.com/item2",
"name": "상품 또는 게시글 제목",
"image": "https://example.com/image2.jpg"
}
]
}
</script>
이런식으로 뿌려지면 될거 같은데요
답변에 대한 댓글 1개
맞습니다.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "WebPage",
"name": "게시글제목",
"url": "해당페이지",
"image": "캐러셀이미지",
"description": "부가설명글"
}
},
이런식으로 작성해두었습니다.
기존에는 캐러셀이 노출되었었는데, 미노출로 변경되어서 다시 노출시키고싶은데 쉽지않네요
답변을 작성하려면 로그인이 필요합니다.
답변 감사드립니다.
스키마 마크업 검사기 이미 돌려봤는데, 감지된 경고사항 오류사항이 없습니다 하하...