aioseo_opengraph_attributes, [ prefix=og: https://ogp.me/ns# ]

aioseo_opengraph_attributes, [ prefix=og: https://ogp.me/ns# ]

Hook Type: filter

See hook in core

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

apply_filters('aioseo_opengraph_attributes, [ prefix=og: https://ogp.me/ns# ]') is found 1 times:

  • /app/Common/Social/Social.php line 106
    		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 ";
    			}
    		}