SEO
2026.06.12 · 6분 읽기
SEO 메타 태그 완전정복: 복붙용 템플릿
블로그 만들어놓고 메타 태그 빈 채로 두는 분들. 이 글 복붙하고 끝내세요.
📋 필수 4개 + 권장 5개
구글이 본다: title, description, canonical, robots. SNS가 본다: OG 4개 + Twitter Card. 9개면 99% 끝.
🔧 복붙 템플릿
<!-- 기본 --> <title>글 제목 60자 이내 | 블로그명</title> <meta name="description" content="155자 이내 요약"> <link rel="canonical" href="https://yoursite.com/post"> <meta name="robots" content="index,follow"> <!-- Open Graph (카톡·페북·슬랙) --> <meta property="og:type" content="article"> <meta property="og:title" content="글 제목"> <meta property="og:description" content="155자 이내"> <meta property="og:image" content="https://yoursite.com/og.png"> <meta property="og:url" content="https://yoursite.com/post"> <!-- Twitter Card --> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="글 제목"> <meta name="twitter:image" content="https://yoursite.com/og.png">
📏 길이 가이드
- title: 50~60자 (모바일 잘림)
- description: 150~160자 (구글 SERP 기준)
- og:image: 1200×630 (필수)
⚡ JSON-LD 구조화 데이터
리치 스니펫 받으려면 필수. 블로그 글에 Article 스키마 추가:
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"Article",
"headline":"제목",
"datePublished":"2026-06-12",
"author":{"@type":"Person","name":"이름"}
}
</script>
🛠 도구
- OG 이미지: LinkedIn 게시물 도구 (1200×630)
- OG 미리보기: OG 미리보기
- 표 만들기: HTML 표 도구
💡 검증: Google Search Console에서 URL 검사 → 강화된 결과 확인. 페북 디버거로 OG 캐시 갱신.
← 블로그 목록
PXLTool · 2026.06.12