我已经创建了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视频的新手。
#1
如何从头开始创建wordpress主题:
- 在wp-content / themes / yourtheme中创建你的主题文件夹
- 在主题文件夹中创建一个index.php文件
- 在主题文件夹中创建样式表style.css
根据wordpress规则将代码放置在index.php文件中
<?php get_header(); echo” <h2>这是索引</ 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安装并转到”仪表板”>”外观”>”主题”>”激活你的主题”
评论前必须登录!
注册