把样式放在函数之前怎么样get_header();
<style type="text/css">#header { display: none; }</style>
<?php get_header();?>
<div class="main-container-of-my-template"></div>
<?php get_footer(); ?>
但是,不建议这样做,因为它甚至在
<html>
不在
<head>
但根据您的要求,这可能是通过编辑“我的模板”添加样式的唯一方法。php文件。
注意-
加载脚本的第二种方法(推荐)
<head>
不修改标题的节。php使用的是主题函数。php将样式放入队列
<head>
. 下面是实现该技巧的代码-
确保你做了一个新的new-style.css
包含必要样式的模板目录中的文件
<?php
function wpse_60052_load_style() {
if(is_page_template( \'my-template.php\' )) {
wp_enqueue_style(\'mystyle\', get_bloginfo(\'template_directory\').\'/new-style.css\');
}
}
add_action( \'wp_enqueue_scripts\', \'wpse_60052_load_style\' );
?>