jetpack_enable_open_graph, false

jetpack_enable_open_graph, false

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('jetpack_enable_open_graph, false') is found 2 times:

  • /3rd-party/web-stories.php line 27
     * @return bool
     */
    function maybe_disable_open_graph( $enabled ) {
    	/** This filter is documented in class.jetpack.php */
    	$jetpack_enabled = apply_filters( 'jetpack_enable_open_graph', false );
    
    	if ( $jetpack_enabled ) {
    		$enabled = false;
    	}
    
    	return $enabled;
    
  • /class.jetpack.php line 2051
    		 * @since 2.0.3
    		 *
    		 * @param bool false Should Open Graph Meta tags be added. Default to false.
    		 */
    		if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
    			require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
    		}
    	}
    
    	/**
    	 * Check if Jetpack's Twitter tags should be used.