将公共页设置为模板,然后使用is_page_template()
如何创建page template.
在您的功能中。php类似:
function wp_25271() {
if (is_page_template(\'page-public.php\')) {
wp_enqueue_script(\'bootcards\', \'https://cdnjs.cloudflare.com/ajax/libs/bootcards/1.1.2/fonts/icomoon.svg\', array(\'jquery\'), \'\', true);
}
add_action(\'wp_enqueue_scripts\', \'wp_25271\');