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



get_post_to_edit › WordPress Function

Da2.0.0
Deprecato3.5.0
get_post_to_edit ( $id )
Parametri:
  • (int) $id
    Richiesto:
Vedi:
Ritorna:
  • (WP_Post)
Definito a:
Codex:

Gets an existing post and format it for editing.



Sorgenti

function get_post_to_edit( $id ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'get_post()' );

	return get_post( $id, OBJECT, 'edit' );
}