250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Google Cloud
- 구글 클라우드
- Linux
- CentOS7
- php
- front page
- vscode
- https
- non-www
- git pull
- Certbot
- root
- child theme
- DOM Parser
- Fail2ban
- launch.json
- wordpress
- centos
- mysql
- new user
- Xdebug
- Mac
- home page
- MariaDB
- crontab
- html
- SSL
- Apache
- Liniux
- LetsEncrypt
Archives
- Today
- Total
목록child theme (1)
between 0 and 1
How to include styles in Wordpress Child Themes (워드프레스 차일드테마 css 스타일 적용)
function.php if ( ! function_exists('child_theme_enqueue_scripts') ) { function child_theme_enqueue_scripts() { $parent_style = 'parent-theme'; wp_enqueue_style('child-theme', get_stylesheet_directory_uri() . '/style.css', array($parent_style)); } add_action('wp_enqueue_scripts', 'child_theme_enqueue_scripts'); } style.css /* Theme Name: child-theme Description: A child theme of Parent Theme Aut..
Software Development Engineering/Wordpress
2021. 2. 14. 01:55