根据codex, wp_is_mobile();
是一个布尔函数,如果用户在移动设备上访问网站,则返回true,因此您需要:
if ( wp_is_mobile() ) {
// Run this only for mobile visitors
add_filter( \'wp_nav_menu_items\', \'B_function\', 10, 2 ); function B_function(/* add B */ );
} else {
//If we are not on mobile, then run this filter
add_action( \'wp_head\', \'A_function\' ); function A_function(/* add A */);
}