📜  如何在主题编辑器中添加子主题中的文件 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:17.041000             🧑  作者: Mango

代码示例2
add_action('after_setup_theme', function() {
    $file = get_stylesheet_directory() . '/my-file.php';
    touch($file);
});