我做了一些很好的改变,希望这对你有帮助。请尝试以下代码:
function my_custom_tooltip() {
wp_enqueue_style( \'custom_tooltip_frontend_css\', plugins_url(\'custom-image-tooltip/custom-image-tooltip.css\') );
wp_enqueue_script( \'custom_tooltip_frontend_js\', plugins_url(\'custom-image-tooltip/custom-image-tooltip.js\'), array(\'jquery\'), \'\', true );
}
if(is_page($page_selected)){
add_action(\'wp_enqueue_scripts\', \'my_custom_tooltip\');
}
在这里,确保
$page_selected
.
NOTE: 您应该始终将脚本排入主题函数的队列。php文件-不是模板文件。模板文件在当时不是正确的位置。
您可以使用is_page()
多种形式,如:
// When any single Page is being displayed.
is_page();
// When Page 42 (ID) is being displayed.
is_page( 42 );
// When the Page with a post_title of "Contact" is being displayed.
is_page( \'Contact\' );
// When the Page with a post_name (slug) of "about-me" is being displayed.
is_page( \'about-me\' );
// Returns true when the Pages displayed is either post ID 42, or post_name "about-me", or post_title "Contact".
is_page( array( 42, \'about-me\', \'Contact\' ) );
Note: 在版本2.5中添加了阵列功能。