네이버 캐러셀 질문올립니다.

네이버 캐러셀 질문올립니다.

QA

네이버 캐러셀 질문올립니다.

답변 2

본문

안녕하십니까 선배님들.

 

제가 운영중인 사이트의 네이버 캐러셀이 미노출로 바뀌었습니다.

 

기존에 잘 올라가있던 캐러셀이 내려가서, 재수집 요청을 매일 하고있으나 

 

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

<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>

이런식으로 뿌려지면 될거 같은데요

 

안녕하세요 선배님!
맞습니다.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "ItemList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "item": {
        "@type": "WebPage",
        "name": "게시글제목",
        "url": "해당페이지",
        "image": "캐러셀이미지",
"description": "부가설명글"
      }
    },

이런식으로 작성해두었습니다.

기존에는 캐러셀이 노출되었었는데, 미노출로 변경되어서 다시 노출시키고싶은데 쉽지않네요

https://developers.google.com/search/docs/appearance/structured-data?hl=ko 

오류가 없는지  점검 해보세요.

 

오류가 없어도 네이버가 캐러셀은 출력해주지 않을 수 있습니다. 

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 1
© SIRSOFT
현재 페이지 제일 처음으로