get_header操作不起作用

我正在尝试使用get_header操作更改标题模板, 但是无论如何我都不会更改它。
这是我在functions.php中添加的内容:

function prefix_new_header() { return 'newtmpl'; } add_action( 'get_header', 'prefix_new_header' );

我在主题文件夹中有一个名为header-newtmpl.php的文件
我尝试了不同的优先级(1、10、99), 但这没有用。
我有什么想念的吗?谢谢你的帮助!
如果要测试, 你可以在二十一小时内尝试一下。
#1如果你已经创建了另一个标题为header-newtmpl.php的标题模板, 则只需传递一个参数即可获取新标题。
来自get_header();
将其更改为get_header(‘ newtmpl’ );
【get_header操作不起作用】其中newtmpl是新标题的名称, 它将获取header-newtmpl.php的内容而不是header.php

    推荐阅读