Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #51525, comment 21


Ignore:
Timestamp:
02/02/2021 05:57:04 PM (4 years ago)
Author:
herregroen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #51525, comment 21

    initial v1  
    88
    99`apply_filters( ... )` is simply `apply_filters_typed( 'mixed', ... )`.
    10 `apply_filters_typesafe( ... _` is simply `apply_filters_typed( gettype( $value ), ... )`.
     10`apply_filters_typesafe( ... )` is simply `apply_filters_typed( gettype( $value ), ... )`.
    1111
    1212This means we have just one function to maintain and test as opposed to multiple.