如何在将HTML模板转换为wordpress主题时链接style.css文件

时间:2018-05-27 17:47:26

标签: php html css wordpress wordpress-theming

我有一个HTML模板,我想将其转换为Wordpress主题。 WordPress主题需要style.css和index.php才能工作,但模板没有csse文件,它有一个css文件夹。我如何链接它?

2 个答案:

答案 0 :(得分:1)

您可以使用<link rel="stylesheet" href="<?php echo get_template_directory_uri();?>/css/style.css" />功能。

示例:

if {@yourformula}="1" then true //hide else false //don't hide

答案 1 :(得分:0)

将它放在标题中可以正常工作。这是“正确的”&#39;在Wordpress上执行此操作的方法 - 您的functions.php文件或custom plugin中包含以下内容。

function thatwomanuk_header_scripts()
{
    // My stylesheet
    wp_register_style('mystyles', get_template_directory_uri().'/css/style.css', array(), '1.0', 'all');
    wp_enqueue_style('mystyles');
}

add_action('init', 'thatwomanuk_header_scripts'); // Add Custom Scripts to wp_head

样式表和javascripts的参数是:名称/句柄,源,类型,数组(依赖项),版本,延迟。 &#34;所有&#34;最后是这个样式表的媒体查询 - 它可能是&#34; screen&#34;或者&#34;打印&#34;,例如。

此处提供更多信息,以及其他地方:http://www.wpbeginner.com/wp-tutorials/how-to-properly-add-javascripts-and-styles-in-wordpress/