get_the_generator_{$type}

过滤钩子
apply_filters( "get_the_generator_{$type}", $gen, $type )
参数
  • (string) $gen The HTML markup output to wp_head().
    Required:
  • (string) $type The type of generator. Accepts 'html', 'xhtml', 'atom', 'rss2', 'rdf', 'comment', 'export'.
    Required:
定义位置
相关勾子
wp_generator_typethe_generatorget_the_excerptget_the_dateget_comment_type
相关方法
get_the_generatorthe_generatorget_the_author_yimget_the_categoryget_the_author_metaget_the_author_email
引入
2.5.0
弃用
-

get_the_generator_{$type}: 这个函数检索WordPress网站的生成器元标签。参数$type指定了要检索的生成器的类型,如版本、html、xhtml等。

为检索到的生成器类型过滤HTML。

钩子名称的动态部分$type引用生成器类型。

可能的挂钩名称包括:

  • get_the_generator_atom
  • get_the_generator_comment
  • get_the_generator_export
  • get_the_generator_html
  • get_the_generator_rdf
  • get_the_generator_rss2
  • get_the_generator_xhtml
  • return apply_filters( "get_the_generator_{$type}", $gen, $type );

    常见问题

    FAQs
    查看更多 >