将主站点的样式表链接到Wordpress子主题

时间:2015-04-11 15:04:54

标签: php wordpress

我的网站没有在Wordpress上运行,但已在/ blog子目录中安装了Wordpress。我正在尝试修改所选的Wordpress主题以匹配我的网站的标题。我设法相对接近,但在子主题中放置了重复的.css和.js文件。

我想要做的是在从functions.php入队时给出正确的路径 - 我只是不熟悉.php以及如何做到这一点。这就是我所拥有的:

<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'freelance-main', get_stylesheet_directory_uri() . '../../../freelancer.css' );
wp_enqueue_style( 'bootstrap-min', get_stylesheet_directory_uri() . '../../../bootstrap.min.css' );
wp_enqueue_style( 'bootstrap-main', get_stylesheet_directory_uri() . '../../../bootstrap.css' );
wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/style.css',
    array('parent-style')
);
}
?>

从查看页面源代码,它实际上是在网址中加载“../”所以我知道这不对,我只是不知道如何正确输入。这是结构:

root -mywebsite
--blog
---可湿性粉剂内容
----主题
-----儿童主题
--css
---需要的文件
--js
---需要的文件

就像我说的,如果我复制文件并将它们放在子主题中它可以工作,但我认为这不是最佳实践。

0 个答案:

没有答案