WordPress 重新定义页面模板到其他目录

/**
 * 定义子目录,以便它也可以从其他地方轻松访问
 */
add_filter('page_template_hierarchy',function($templates){
    foreach ($templates as &$tpl) {
        $tpl = 'pages/'.preg_replace('/^page-/i','', $tpl);
    }
    return $templates;
});

发表回复

后才能评论