Wordpress

Home/Wordpress

Vernum theme 한글 폰트 적용

1. wp-content/themes/vernum/assets/css의 font.css를 열어서 2. http://fonts.googleapis.com/earlyaccess/nanumgothic.css 에 있는 코드를 복사해 넣음 /* * Nanum Gothic (Korean) http://www.google.com/webfonts/earlyaccess */ @font-face { font-family: 'Nanum Gothic'; font-style: normal; font-weight: 700; src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Bold.eot); src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Bold.eot?#iefix) format('embedded-opentype'), url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Bold.woff2) format('woff2'), url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Bold.woff) format('woff'), url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Bold.ttf) format('truetype'); } @font-face { font-family: 'Nanum Gothic'; font-style: normal; font-weight: 400; src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Regular.eot); src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Regular.eot?#iefix) format('embedded-opentype'), url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Regular.woff2) format('woff2'), [...]

구글 웹폰트 나눔고딕 적용하기

참고 링크 http://www.google.com/fonts/earlyaccess 1. css에 아래 코드를 넣고 @import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css); 위에 것 대신 아래 코드로 해야 될 때가 있는데 원인을 몰랐는데요. 위에 코드로 할 때는 다른 스타일 보다 앞에 있어야 적용이 됩니다. /* * Nanum Gothic (Korean) http://www.google.com/webfonts/earlyaccess */ @font-face { font-family: 'Nanum Gothic'; font-style: normal; font-weight: 700; src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Bold.eot); src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Bold.eot?#iefix) format('embedded-opentype'), url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Bold.woff2) format('woff2'), [...]

After install wordpress in a folder 폴더에 워드프레스 설치 후

If you intall wordpress in a folder (for example 'wp' folder here), your site adress looks like 'yourdomain.com/wp'. But if you want your site adress just 'yourdomain.com'. 예를 들어 wp라는 폴더를 만들고 폴더에 워드프레스를 설치하면, yourdomain.com/wp 로 접속해야하는데 그냥 yourdomain.com 로 하고 싶으면. 1. open 'index.php' in wp folder. add '/wp' , so make like [...]

bbPress anonymous post.

By default, bbPress doesn't allow anonymous post. How can I let anyone write topic without registration? (bbPress는 기본으로 로그인을 해야 토픽을 생성할 수 있다. 가입 없이 간단히 글 쓸 수 있게 하려면? )

bbPress for ‘vernum’ theme

vernum 테마에 bbPress 사용하기. 기본적으로 bbpress 사용시 좌우로 꽉차게 됨. By default, It look like this image. There is no sidebar and no margin left and right. solution 1. install ‘bbPress WP Tweaks’ plugin 2. Dashboard – Settings – bbPress WP Teaks – check ‘single.php’ 3. open 'layout.css' Add display:none; for two slectors. section.blog-header nav.breadcrumbs [...]