我正在学习如何使用专题框架
在wordpress中创建模板在头文件中,我找到:
// Filter provided for altering output of the header opening element
echo ( apply_filters( 'thematic_open_header', '<div id="header">' ) );
// Action hook creating the theme header
thematic_header();
echo ( apply_filters( 'thematic_close_header', '</div><!-- #header-->' ) );
我想在div id =&#34; header&#34; ... / div上面添加一个包装器div元素
我试图像这样编辑apply_filter行:
echo ( apply_filters( 'thematic_open_header', '<div id="headerWrapper"><div id="header">' ) );
但它不起作用,只需打印输出div id =&#34; header&#34;
如何才能创建我想要的html?
由于