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
- Linux
- centos
- Fail2ban
- https
- git pull
- launch.json
- wordpress
- 구글 클라우드
- home page
- Xdebug
- Apache
- crontab
- php
- Liniux
- new user
- Mac
- CentOS7
- mysql
- Certbot
- html
- SSL
- root
- non-www
- DOM Parser
- vscode
- MariaDB
- front page
- LetsEncrypt
- child theme
- Google Cloud
Archives
- Today
- Total
목록Software Development Engineering/Wordpress (2)
between 0 and 1
How to change the Wordpress front-page (워드프레스 전면페이지 변경)
Step 1. move to "Settings -> Reading" Step 2. select "A static page" Step 3. select a homepage or posts page Step 4. "Save Changes"
Software Development Engineering/Wordpress
2021. 2. 14. 10:03
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