WordPress에서 폰트 삽입하는 방법

WordPress에서 사용자 지정 폰트를 삽입하는 방법은 여러 가지가 있습니다. 사용 목적과 편의성에 따라 적절한 방법을 선택하면 됩니다. 1. Google Fonts 사용 (가장 쉬운 방법) Google Fonts는 무료 웹 폰트를 제공하며, WordPress에서 가장 간단하게 적용할 수 있는 방법입니다. 1) functions.php에서 Google Fonts 불러오기 function enqueue_google_fonts() { wp_enqueue_style(‘google-fonts’, ‘https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700&display=swap’, false); } add_action(‘wp_enqueue_scripts’, ‘enqueue_google_fonts’); 2) style.css에서 폰트 적용 … Read more