需要根据类别ID添加自定义标题

时间:2019-02-15 20:10:44

标签: php wordpress

需要通过[ w11, w12 w21, w22 ] 根据类别ID添加自定义标头。 我设置了2个标题页:functions.phpheader-19.php。 但什么也没发生。我在做什么错了?

header-20.php

1 个答案:

答案 0 :(得分:0)

尝试一下

$ curl https://serpapi.com/search.json?q=definition%20calcium&google_domain=google.de
...
  "answer_box": {
    "type": "dictionary_results",
    "syllables": "cal·ci·um",
    "phonetic": "/ˈkalsēəm/",
    "word_type": "noun",
    "definitions": [
      "the chemical element of atomic number 20, a soft gray metal."
    ]
  },
...

然后在您的页面中添加

function my_custom_header() {
    if (is_category('19')) :
        get_header('19');
    elseif (is_category('20')) :
        get_header('20');
    else :
        get_header();
    endif;
}