[WORDPRESS] WordPress 테마의 옵션 트리가있는 모든 활판 인쇄 옵션을 추가하는 방법은 무엇입니까?
WORDPRESSWordPress 테마의 옵션 트리가있는 모든 활판 인쇄 옵션을 추가하는 방법은 무엇입니까?
해결법
-
1.다음은 FrontEnd에서 OptionTree 타이포그래피 옵션을 사용하는 예입니다.
다음은 FrontEnd에서 OptionTree 타이포그래피 옵션을 사용하는 예입니다.
$header_font = ot_get_option( 'heading_font' ); if(!empty($header_font)){ $font = $header_font; $output .= 'h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a{font-family: '.$font['font-family'].'; font-style: '.$font['font-style'].'; font-variant:'.$font['font-variant'].'; font-weight:'.$font['font-weight'].'; letter-spacing:'.$font['letter-spacing'].'; text-decoration:'.$font['text-decoration'].'; text-transform:'.$font['text-transform'].'; }'; }
from https://stackoverflow.com/questions/25219208/how-to-add-all-typography-options-with-options-tree-in-wordpress-theme by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] WooCommerce의 시간 제한을 통해 고객 당 주문 수를 제한하는 방법 (0) | 2020.11.24 |
---|---|
[WORDPRESS] WP_LIST_PAGES ($ args)를 포장하는 방법; DIV 및 UL 요소가 있습니까? (0) | 2020.11.24 |
[WORDPRESS] Woocommerce 플러그인을위한 보안 문자 reCAPTCHA와 함께 작동하지 않는 WOOCOMMMERCE 체크 아웃 (0) | 2020.11.24 |
[WORDPRESS] WordPress Multisite 문제 (0) | 2020.11.24 |
[WORDPRESS] <p> 태그 및 클래스가있는 제목 (<h1>, <h2> ...) 태그를 교체합니다. (0) | 2020.11.24 |