wpseo_indexable_collector_add_indexation_actions

wpseo_indexable_collector_add_indexation_actions

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.24.8.1

apply_filters('wpseo_indexable_collector_add_indexation_actions') is found 1 times:

  • /src/analytics/application/missing-indexables-collector.php line 63
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    * @param Indexation_Action_Interface $actions This filter expects a list of Indexation_Action_Interface instances
     *                                             and expects only Indexation_Action_Interface implementations to be
     *                                             added to the list.
     */
    $indexing_actions = (array) \apply_filters( 'wpseo_indexable_collector_add_indexation_actions', $this->indexation_actions );
     
    $this->indexation_actions = \array_filter(
        $indexing_actions,
        static function ( $indexing_action ) {
            return \is_a( $indexing_action, Indexation_Action_Interface::class );
        }