anndoe
|
|-------css/ anndoe.css
|-------js/anndoe.js
|--functions.php
|--header.php
|--index.php
|--style.css
我在函数中添加了以下代码。php,而我的索引页不会显示。如果我删除这段代码,我的索引页就会工作。
<?php
function anndoe_script_enqueue() {
wp_enqueue_style (\'customstyle\', get_template_directory_uri() . \'/css/anndoe.css\',\'1.0.0\',\'all\');
}
add_action ( \'wp_enqueue_scripts\', \'anndoe_script_enqueue\')
在我的标题中。我添加的php
<?php wp_head(); ?>
在上面
</head>
标签