За последние 24 часа нас посетили 17486 программистов и 1711 роботов. Сейчас ищут 1620 программистов ...

Что такое apply_filter в хуках и как используется?

Тема в разделе "Wordpress", создана пользователем Алексей87К, 22 ноя 2017.

Метки:
  1. Алексей87К

    Алексей87К Новичок

    С нами с:
    5 янв 2017
    Сообщения:
    157
    Симпатии:
    4
    Здравствуйте! Прошу объяснить по данному вопросу!
     
  2. MouseZver

    MouseZver Суперстар

    С нами с:
    1 апр 2013
    Сообщения:
    7.794
    Симпатии:
    1.330
    Адрес:
    Лень
    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
    https://stackoverflow.com/questions/2270989/what-does-apply-filters-actually-do-in-wordpress