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



_get_template_edit_filename › WordPress Function

Seit2.9.0
Veraltetn/v
_get_template_edit_filename ( $fullpath, $containingfolder )
Zugriff:
  • private
Parameter: (2)
  • (string) $fullpath Full path to the theme file
    Erforderlich: Ja
  • (string) $containingfolder Path of the theme parent folder
    Erforderlich: Ja
Gibt zurück:
  • (string)
Definiert in:
Codex:

Tidies a filename for url display by the theme file editor.



Quellcode

function _get_template_edit_filename( $fullpath, $containingfolder ) {
	return str_replace( dirname( $containingfolder, 2 ), '', $fullpath );
}