如何在wordpress主题中添加选项树的所有排版选项?

时间:2014-08-09 13:44:28

标签: php html css wordpress fonts

我是WordPress主题开发的新手,我不得不用选项树创建一个主题。

我已经在wordpress主题中成功添加了一些带有选项树插件的选项。但是当我去添加排版选项时,我真的很站立。我有一个关于主题选项的完整部分,其中'type'=> '排版',之后我看到我在仪表板主题选项上找到了一些选项,例如'font-family''font-size''line-height''font-style'等。现在我想要查询所有方法,但我不知道怎么办?

请帮帮我。 感谢阅读---

1 个答案:

答案 0 :(得分:1)

以下是在前端使用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'].';  }';     
}