wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_wp_oembed_get_object › WordPress Function

Da2.9.0
Deprecaton/a
_wp_oembed_get_object ( Nessun parametro )
Accedi:
  • private
Ritorna:
  • (WP_oEmbed) object.
Definito a:
Codex:

Returns the initialized WP_oEmbed object.



Sorgenti

function _wp_oembed_get_object() {
	static $wp_oembed = null;

	if ( is_null( $wp_oembed ) ) {
		$wp_oembed = new WP_oEmbed();
	}
	return $wp_oembed;
}