Bumptop主题:如何通过主题森林为报纸主题创建子主题

我创建了两个文件:

style.css
functions.php

两者都在压缩文件夹News-child中。

style.css:
Theme Name: News Child
Template: News
*/
functions.php:
<?php
add_action('wp_enqueue_scripts', 'my_theme_enqueue_styles');
function my_theme_enqueue_styles() {
    $parent_style = 'parent-style'; // This is 'twentyfif-style' for the Twenty Fif theme.
    wp_enqueue_style($parent_style, get_template_directory_uri() . '/style.css');
    wp_enqueue_style('child-style',
        get_stylesheet_directory_uri() . '/style.css',
        array($parent_style),
        wp_get_theme()->get('Version')
    );
}
?>

当我使用子主题时,它完全弄乱了我的网站。

2

删除对“parent-style”的依赖项。改用此代码。

add_action( 'wp_enqueue_scripts', 'child_enqueue_styles');
function child_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array(), '1.0');
}
0
<?php

函数 my_theme_enqueue_styles () {

add_action( 'wp_enqueue_scripts', 'child_enqueue_styles');

函数 child_enqueue_styles () {

wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array(), '1.0');

} wp_enqueue_style ($parent_style,get_template_directory_uri ().'/ style.css');wp_enqueue_style ('child-style',get_stylesheet_directory_uri ().'/ style.css',array ($parent_style

现在还好吗?

本站系公益性非盈利分享网址,本文来自用户投稿,不代表边看边学立场,如若转载,请注明出处

(959)
云服务器搭建云电脑:云服务器厂商如何实现云服务器
上一篇
Sdk和api的区别:API和 SDK的区别
下一篇

相关推荐

  • lifestart.syaro网页版Lifestart.syaro网页版

    lifestart.syaro是一个基于Web的轻量级社交网络服务,它提供了一种方便快捷的方式来分享、交流和发布内容。它的核心功能包括:…

    2023-09-16 14:53:15
    0 75 38
  • 网页保存密码怎么查看:Intellij IDEA-查看保存的密码

    关于网页保存密码怎么查看的问题,在how to look at saved passwords on android中经常遇到,我忘记了我的 Android 密钥库的密码,但它保存在 Intellij IDEA 密码管理器中。我知道主密码,因此 IDEA 能够自动完成密钥库密码,但我找不到从文本字段中查看或复制 / 粘贴密码的方法。…

    2024-08-12 15:52:00
    0 38 72
  • Most er:查看此 ER图(university erd)

    关于Most er的问题,在university erd中经常遇到,你被要求为大学管理部门设计一个数据库,其中记录了以下信息:…

    2024-09-27 13:40:39
    0 43 59
  • 打印样式怎么设置:打印:平行坐标打印:轴样式(parallel plot examples)

    关于打印样式怎么设置的问题,在parallel plot examples中经常遇到,我真的很喜欢 Plotly 中可用的平行坐标图,但我只是遇到了一个问题,我可以使用帮助。…

    2024-08-13 10:34:05
    0 65 45
  • S sts:按STS令牌年龄限制S3存储桶访问 (token age)

    关于S sts的问题,在token age中经常遇到,我有一个 S3 存储桶,我想根据用于访问它的凭证的年龄来限制访问。例如,如果用于访问存储桶的令牌大于 X 天,我想拒绝访问。我怎样才能实现这一点?像这样的政策-…

    2023-10-23 03:50:39
    0 85 37
  • Windows部署ftp服务器:AS400FTP到Windows服务器

    关于Windows部署ftp服务器的问题,在ftp to a windows server中经常遇到,我想写一个 CLLE 程序将文件从 IFS 传输到 Web 服务器。…

    2024-03-07 11:28:10
    0 47 40
  • 怎么让qq皮肤透明:你怎么让剑攻击(how to make sword)

    关于怎么让qq皮肤透明的问题,在how to make sword中经常遇到,你们是怎么进行剑攻的?我问这个问题是因为我不知道如何进行剑攻,而我正在观看的tutorial只显示了射弹攻击。我想学习如何为我正在创建的游戏进行剑攻。这是我正在显示的代码…

    2023-11-09 03:19:53
    0 94 81
  • Idea导入文件:IDEA无法重新导入 sbt项目

    关于Idea导入文件的问题,在extracting structure failed: build status: error中经常遇到,它经常发生在当前稳定版本的(社区)IDEA(2021.1.2)和 Scala 插件(2021.1.21),我在 Windows 下对 sbt 文件(例如 sbt 版本 1.5.3)进行更改,IDEA 显示它需要导入,但它失败了:…

    2023-10-28 06:30:48
    0 27 72

发表评论

登录 后才能评论

评论列表(77条)