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
- vscode
- CentOS7
- Linux
- https
- mysql
- root
- crontab
- Certbot
- SSL
- Google Cloud
- php
- Xdebug
- DOM Parser
- LetsEncrypt
- centos
- git pull
- launch.json
- front page
- Liniux
- Apache
- wordpress
- child theme
- home page
- new user
- non-www
- 구글 클라우드
- Mac
- Fail2ban
- html
- MariaDB
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