What does apply_filters(…) actually do in WordPress?

后端 未结 4 1480
谎友^
谎友^ 2020-12-12 12:13

I\'m trying to understand some of the function in WordPress, but I can\'t get my head around what apply_filters(...) actually does.

Is someone able to clear this up

4条回答
  •  鱼传尺愫
    2020-12-12 13:08

    apply_filters($tag, $value) passes the 'value' argument to each of the functions 'hooked' (using add_filter) into the specified filter 'tag'. Each function performs some processing on the value and returns a modified value to be passed to the next function in the sequence.

    For example, by default (in WordPress 2.9) the the_content filter passes the value through the following sequence of functions:

    • wptexturize
    • convert_smilies
    • convert_chars
    • wpautop
    • shortcode_unautop
    • prepend_attachment
    • do_shortcode

提交回复
热议问题