문서의 이전 판입니다!
워드프레스 테마 제작
기본구조
- index.php
<!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo('charset'); ?>"> <title><?php bloginfo('name'); ?> <?php wp_title('|'); ?></title> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php wp_footer(); ?> </body> </html>