wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_real_file_to_edit › WordPress Function

Depuis1.5.0
Dépréciée2.9.0
get_real_file_to_edit ( $file )
Paramètres:
  • (string) $file Filesystem path relative to the wp-content directory.
    Requis: Oui
Utilise:
  • WP_CONTENT_DIR
Retourne:
  • (string) Full filesystem path to edit.
Défini(e) dans:
Codex:

Get the real filesystem path to a file to edit within the admin.



Source

function get_real_file_to_edit( $file ) {
	_deprecated_function( __FUNCTION__, '2.9.0' );

	return WP_CONTENT_DIR . $file;
}