function wpdocs_style() {
wp_enqueue_style( \'style-name\', get_stylesheet_uri() ); //This is for getting style.css of current theme
wp_enqueue_style( \'style-name1\', get_teplate_directory_uri() . \'/css/custom.css\', array(\'jquery\') ); //This is for getting other css file from parent directory
wp_enqueue_script( \'script-name1\', get_teplate_directory_uri() . \'/js/custom.js\', array(\'jquery\') ); //This is for getting JS file from parent directory
}
add_action( \'wp_enqueue_scripts\', \'wpdocs_style\' );
OR
//Or as an laternate you can hook with wp_head also
add_action( \'wp_head\', \'wpdocs_style\' );
为了运行上述功能,需要添加
<?php wp_enqueue_script("jquery"); ?>
(如果使用此操作
add_action( \'wp_enqueue_scripts\', \'wpdocs_style\' );
) 在里面
header.php
之前
</head>
.
您必须为每个样式指定名称(如我指定样式名称、style-name1等),并且名称应该是唯一的。如果你想退出子主题的函数。php那么您必须使用get_stylesheet_directory_uri()
而不是get_teplate_directory_uri()
.