wpseo_introductions

wpseo_introductions

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.24.8.1

apply_filters('wpseo_introductions') is found 1 times:

  • /src/introductions/application/introductions-collector.php line 73
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    *
     * @param Introduction_Interface $introductions This filter expects a list of Introduction_Interface instances and
     *                                              expects only Introduction_Interface implementations to be added to the list.
     */
    $filtered_introductions = (array) \apply_filters( 'wpseo_introductions', $introductions );
     
    return \array_filter(
        $filtered_introductions,
        static function ( $introduction ) {
            return \is_a( $introduction, Introduction_Interface::class );
        }