Add Bootstrap icons to your WordPress
// Register Style function bootstrap_icons() { wp_deregister_style( 'bootstra-icons' ); wp_register_style( 'bootstra-icons', 'https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css', false, false ); } add_action( 'wp_enqueue_scripts', 'bootstrap_icons' );