Korkarım ki hayır. Eğer kodeks içinde bilmek istediğiniz bir şey değilse, kaynağa olan bağlantıyı takip etmeye çalışın ve kendinize koda bir göz atın ve yönetmeye çalışın.
Bir baktım ve get_template_part işlevi aşağıdaki gibi tanımlandı:
function get_template_part( $slug, $name = null ) {
do_action( "get_template_part_{$slug}", $slug, $name );
$templates = array();
if ( isset($name) )
$templates[] = "{$slug}-{$name}.php";
$templates[] = "{$slug}.php";
locate_template($templates, true, false);
}
Bundan, okuyabilirsiniz, bu get_template_part işlevi sadece amaçlanan bir php dosyası adı oluşturur ve locate_template işlevini çağırır. Bu kullanışlı değil, bu yüzden locate_template fonksiyonuna da bir göz attım:
function locate_template($template_names, $load = false, $require_once = true ) {
$located = '';
foreach ( (array) $template_names as $template_name ) {
if ( !$template_name )
continue;
if ( file_exists(STYLESHEETPATH . '/' . $template_name)) {
$located = STYLESHEETPATH . '/' . $template_name;
break;
} else if ( file_exists(TEMPLATEPATH . '/' . $template_name) ) {
$located = TEMPLATEPATH . '/' . $template_name;
break;
}
}
if ( $load && '' != $located )
load_template( $located, $require_once );
return $located;
}
Get bulun şablonu get_template_part denilen php dosyasını arar. Ancak locate_template'i doğrudan kodunuzdan arayabilirsiniz . Ve bu yararlıdır.
Get_template_part ('loop-sigle.php') işlevi yerine bu kodu deneyin (dosyanız temanızın içinde mydir'de bulunur):
locate_template( 'mydir/loop-single.php', true, true );