wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_real_file_to_edit › WordPress Function

Seit1.5.0
Veraltet2.9.0
get_real_file_to_edit ( $file )
Parameter:
  • (string) $file Filesystem path relative to the wp-content directory.
    Erforderlich: Ja
Nutzt:
  • WP_CONTENT_DIR
Gibt zurück:
  • (string) Full filesystem path to edit.
Definiert in:
Codex:

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



Quellcode

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

	return WP_CONTENT_DIR . $file;
}