Bu, (Carrington çekirdek) utility.php dosyasında aslında bir sorundur. / Herhangi bir durum için içeriğini belirlemek için nasıl söyler bir işlevi vardır. Kodu (hat 500 civarında) bu gibi görünüyor:
function swpt_choose_content_template($type = 'content') {
$files = swpt_files(swpt_PATH.$type);
$filename = swpt_choose_single_template($files);
if (!$filename && swpt_context() == 'page' && file_exists(swpt_PATH.$type.'/page.php')) {
$filename = 'page.php';
}
if (!$filename) {
$filename = swpt_default_file($type);
}
return apply_filters('swpt_choose_content_template', $filename, $type);
}
Bunu ön sayfa içeriği şablon yolu denetlemek için orada başka bir durumda eklemek gerekir ... Bu (bu örnekte, ön sayfa "ön page.php" dir) kodu olacaktır:
//checks to see if this is the front page content - this fixes the error of the framework choosing the default content rather than the front page content
if (!$filename && swpt_context() == 'front-page' && file_exists(swpt_PATH.$type.'/front-page.php')) {
$filename = 'front-page.php';
}
Ben doğru varsayılan durumda yukarıdaki, ve anında Carrington yerine ön sayfa içeriği şablon daha varsayılan içeriği çağrı sorunu çözüldü sözlerine ekledi.