wpseo_introductions

wpseo_introductions

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.22.6

apply_filters('wpseo_introductions') is found 1 times:

  • /src/introductions/application/introductions-collector.php line 73
    		 *
    		 * @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 );
    			}