그누보드5 링크 썸네일을 게시판 첨부파일 사용하도록 하는 코드 (OG이미지메타테그)
아래의 코드를 head.sub.php의 </head> 위에 삽입
<?php
function override_og_image() {
$html = ob_get_contents();
libxml_use_internal_errors(true);
$dom = new DOMDocument();
@$dom->loadHTML($html, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD);
$xpath = new DOMXPath($dom);
// Find view_image class images
$images = $xpath->query('//a[@class="view_image"]//img');
// Extract current OG image
preg_match('/<meta\s+property="og:image"\s+content="([^"]*)"[^>]*>/i', $html, $matches);
$defaultImageUrl = isset($matches[1]) ? $matches[1] : 'https://내도메인/이미지';
// Select random image or fallback
if ($images->length > 0) {
$randomIndex = rand(0, $images->length - 1);
$newImageUrl = $images->item($randomIndex)->getAttribute('src');
// Validate URL format
if (!filter_var($newImageUrl, FILTER_VALIDATE_URL)) {
$newImageUrl = $defaultImageUrl;
}
} else {
$newImageUrl = $defaultImageUrl;
}
// Replace OG image meta tag
$pattern = '/<meta\s+property="og:image"\s+content="[^"]*"[^>]*>/i';
$replacement = '<meta property="og:image" content="' . htmlspecialchars($newImageUrl, ENT_QUOTES, 'UTF-8') . '">';
$modified_html = preg_replace($pattern, $replacement, $html);
ob_clean();
echo $modified_html;
}
ob_start();
register_shutdown_function('override_og_image');
?>
*클로드ai 작품
댓글 2개
감사합니다 ^^
감사합니다.
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4413 | ||
| 2664 |
선택과집중
|
4개월 전 | 573 | |
| 2663 |
|
4개월 전 | 622 | |
| 2662 |
|
4개월 전 | 576 | |
| 2661 |
선택과집중
|
4개월 전 | 508 | |
| 2660 | 4개월 전 | 588 | ||
| 2659 |
Modify
|
4개월 전 | 654 | |
| 2658 |
선택과집중
|
4개월 전 | 415 | |
| 2657 | 4개월 전 | 452 | ||
| 2656 |
|
4개월 전 | 964 | |
| 2655 |
선택과집중
|
4개월 전 | 549 | |
| 2654 | 5개월 전 | 404 | ||
| 2653 |
선택과집중
|
5개월 전 | 585 | |
| 2652 | 5개월 전 | 395 | ||
| 2651 | 5개월 전 | 446 | ||
| 2650 |
선택과집중
|
5개월 전 | 328 | |
| 2649 |
선택과집중
|
5개월 전 | 424 | |
| 2648 | 5개월 전 | 442 | ||
| 2647 |
welcome
|
5개월 전 | 545 | |
| 2646 |
디지털홍익인간
|
5개월 전 | 453 | |
| 2645 | 5개월 전 | 467 | ||
| 2644 |
선택과집중
|
5개월 전 | 514 | |
| 2643 | 5개월 전 | 457 | ||
| 2642 | 5개월 전 | 372 | ||
| 2641 | 5개월 전 | 359 | ||
| 2640 | 5개월 전 | 394 | ||
| 2639 | 5개월 전 | 1360 | ||
| 2638 |
|
5개월 전 | 514 | |
| 2637 |
세르반데스
|
5개월 전 | 401 | |
| 2636 |
선택과집중
|
6개월 전 | 569 | |
| 2635 |
선택과집중
|
6개월 전 | 684 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기