在WordPress导航菜单上添加JavaScript可以通过以下步骤实现:
function add_custom_js_to_menu_item($item_output, $item, $depth, $args) {
if (in_array('js-menu-item', $item->classes)) {
$item_output .= '<script type="text/javascript">
// 在这里添加你的JavaScript代码
</script>';
}
return $item_output;
}
add_filter('walker_nav_menu_start_el', 'add_custom_js_to_menu_item', 10, 4);
这样,你就成功在WordPress导航菜单上添加了JavaScript。请注意,这种方法仅适用于自定义菜单项,而不是WordPress自动生成的页面或文章链接。
领取专属 10元无门槛券
手把手带您无忧上云