gpt4 book ai didi

php - 在子主题 WP 中添加自定义 php 文件

转载 作者:行者123 更新时间:2023-11-28 01:39:01 24 4
gpt4 key购买 nike

我想在我当前使用的主要 WP 主题中的 php 文件中添加自定义 html 代码。所以我决定使用子主题来做到这一点,但我看不出我的代码哪里错了,也看不出为什么这不起作用?

这是我的 functions.php 代码:

<?php
add_action( 'wp_enqueue_scripts', 'boo_child_theme_style', 99 );
add_action( 'wp_enqueue_scripts', 'boo_child_portfolio_style', 99 );

function boo_parent_theme_scripts() {
wp_enqueue_style( 'base', get_template_directory_uri() . '/style.css' );
}
function boo_child_theme_style(){
wp_enqueue_style( 'child-boo-style', get_stylesheet_directory_uri() . '/style.css' );
}

function boo_parent_portfolio_scripts() {
wp_enqueue_style( 'base', get_template_directory_uri() . '/templates/portfolio/tmpl-grid.php' );
}
function boo_child_portfolio_style(){
wp_enqueue_style( 'child-boo-style', get_stylesheet_directory_uri() . '/tmpl-grid.php' );
}

所以对于 style.css 它可以工作但是对于 php 文件它不工作而且我不知道为什么......有人可以解释并帮助我吗?

提前致谢!

最佳答案

@arcath 是对的,您不能使用 Enqueue 函数添加 php 文件。它们仅用于添加/覆盖 .css 和 .js 文件。对于您使用 wp_enqueue_style 的样式表和使用 wp_enqueue_scripts 的 Javascript,这也是两种不同的方法。

不要一次又一次地调用方法调用入队方法的最佳方法是在子目录示例中的 function.php 中仅调用一次。

function adding_scripts_and_styles() {
wp_enqueue_script('unique_child_custom_js', get_stylesheet_directory_uri() . '/directory_path_if_any/custom.js', array('jquery'), true, true );
wp_enqueue_script('unique_child_custom_css', get_stylesheet_directory_uri() . '/directory_path_if_any/custom.css');
}

add_action( 'wp_enqueue_scripts', 'adding_scripts_and_styles');

为了覆盖 wordpresss 模板,在您的子主题 wordpress 目录中创建一个同名的 php 文件。 Wordpress 在加载时首先读取子主题模板文件。

例如,如果您想覆盖 archive.php 页面模板,请在您的子主题中创建一个 archive.php,然后 wordpress 将使用您子主题中的 archive.php 文件,而忽略父主题 archive.php。

希望对您有所帮助!快乐编码:)

关于php - 在子主题 WP 中添加自定义 php 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50527539/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com