wpseo_output_enhanced_slack_data

wpseo_output_enhanced_slack_data

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.24.8.1

apply_filters('wpseo_output_enhanced_slack_data') is found 1 times:

  • /src/integrations/front-end-integration.php line 549
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
        }
        if ( $this->options->get( 'twitter' ) === true && \apply_filters( 'wpseo_output_twitter_card', true ) !== false ) {
            $presenters = \array_merge( $presenters, $this->twitter_card_presenters );
        }
        if ( $this->options->get( 'enable_enhanced_slack_sharing' ) === true && \apply_filters( 'wpseo_output_enhanced_slack_data', true ) !== false ) {
            $presenters = \array_merge( $presenters, $this->slack_presenters );
        }
     
        return \array_merge( $presenters, $this->closing_presenters );
    }