aioseo_opengraph_attributes

aioseo_opengraph_attributes

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

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.8.1.1

apply_filters('aioseo_opengraph_attributes') is found 1 times:

  • /app/Common/Social/Social.php line 116
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    if ( ! aioseo()->options->social->facebook->general->enable ) {
        return $htmlTag;
    }
     
    $attributes = apply_filters( 'aioseo_opengraph_attributes', [ 'prefix="og: https://ogp.me/ns#"' ] );
    foreach ( $attributes as $attr ) {
        if ( strpos( $htmlTag, $attr ) === false ) {
            $htmlTag .= " $attr ";
        }
    }