我已经创建了HTML / CSS设计,现在正尝试将其转换为WordPress模板。我已经创建了样式表和function.php。
我的function.php中有以下代码
<?php
function test_theme(){
wp_enqueue_style("customstyle", get_stylesheet_uri() )
}
add_action( 'wp_enqueue_scripts', 'test_theme' );
我已将其添加到header.php
<?php wp_head(); ?>
出于某种原因,WordPress添加了一些脚本和指向标头的链接,但未添加我的自定义样式表
我在做什么错?我也是wordpress开发和观看youtube视频的新手。
答案 0 :(得分:0)
如何从头开始创建wordpress主题:
根据wordpress规则将代码放入index.php文件中
<?php
get_header();
echo "<h2>This is the index</h2>";
get_sidebar();
get_footer();
?>
根据wordpress规则将CSS放在style.css中。通常,我们将其添加到style.css的顶部,这样您就不再需要将其排队在functions.php中。
/*
* Theme Name: Your theme
* Theme URI: https://yourtheme.com
* Author: Memyself Andi
* Author URI: https://yourtheme.com
* Description: My WordPress theme.
* Version: 1.0
*/
现在进入您的wordpress安装并转到“仪表板”>“外观”>“主题”>激活“您的主题”