[cosmos_post_grid]

]+src=["\']([^"\']+)["\']/i', $content, $m)) { return ''; } return ''; } // 2) the_excerpt 필터로 카드형 목록 출력 add_filter('the_excerpt', function($excerpt) { if (!is_home() && !is_archive()) { // 일반 페이지(싱글 포스트)에는 본문 요약 그대로 보여주기 return $excerpt; } global $post; // 콘텐츠에서 미디어 가져오기 $media = mb_extract_media($post->post_content); // 요약 텍스트: 본문에서 태그 제거 후 30단어 $brief = wp_trim_words(wp_strip_all_tags($post->post_content), 30, '…'); // 카드 HTML $html = '
'; if ($media) { $html .= '
'.$media.'
'; } $html .= '
'; $html .= '

'.get_the_title().'

'; $html .= '
'.$brief.'
'; $html .= '
'.get_the_date('Y.m.d (D)').' · '.get_the_author().'
'; $html .= '
'; return $html; });