Swibeco, “The Swiss Benefits Company”, is a web and mobile platform which aggregates discounts and benefits that our clients offer to their employees. It is designed to facilitate gratification and tax free rewards within Swiss companies towards their employees. In addition, we help our clients to strengthen the employer brand, the purchasing power of their employees as well as the local trade.
';
echo 'FAQ';
echo ' | ';
// Récupérer les termes de la taxonomie 'faq-categorie'
$categories = get_the_terms(get_the_ID(), 'faq-categorie');
if ( ! empty( $categories ) && ! is_wp_error( $categories ) ) {
foreach ( $categories as $category ) {
// Générer le lien avec ancre sans ajouter un slash après le slug
$anchor_link = home_url() . '/faq/#' . $category->slug;
echo '' . esc_html( $category->name ) . '';
if ( next( $categories ) ) {
echo ' | ';
}
}
}
echo '';
}
// Appeler la fonction pour afficher le fil d'Ariane sur les pages d'articles
if ( is_single() ) {
custom_faq_breadcrumb();
}
?>


