복붙노트

[WORDPRESS] WordPress 테마의 옵션 트리가있는 모든 활판 인쇄 옵션을 추가하는 방법은 무엇입니까?

WORDPRESS

WordPress 테마의 옵션 트리가있는 모든 활판 인쇄 옵션을 추가하는 방법은 무엇입니까?

해결법


  1. 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'].';  }';     
    }
    
  2. 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