我想在我当前使用的主要 WP 主题中的 php 文件中添加 cutom 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 文件它不起作用,我不知道为什么......有人可以解释并帮助我吗?
提前致谢 !