You appear to be a bot. Output may be restricted
Description
Gets the default Open Graph image if set in the Customizer.
Usage
$array = Open_Graph::get_open_graph_default_image();
Parameters
Returns
array Image info with 'url', 'height', 'width', and 'alt' keys or empty array.
Source
File name: genesis/lib/classes/SEO/Open_Graph.php
Lines:
1 to 6 of 6
protected function get_open_graph_default_image() { $default_image_id = genesis_get_seo_option( 'open_graph_default_image' ) ?: false; return $this->get_image_info( $default_image_id ); }