Edit File: breadcrumb.php
<?php $categories = get_the_category(); $options = get_option( 'orun_opt' ); // Options ?> <style> .head-2{ align-items:center !important; justify-content:center !important; } </style> <div class="orun-breadcrumb <?php echo $options['orun-opt-single-breadcrumb-design'] ?> <?php echo $options['orun-opt-single-heading-design'] ?> "> <ol> <li><a rel="nofollow" href="<?php echo esc_url(home_url('/'));?>"><?php _e('Anasayfa', 'orun');?></a></li> <li> › </li> <li><a rel="nofollow" href="<?php echo esc_url(get_category_link( $categories[0]->term_id )); ?>"><?php echo $categories[0]->name; ?></a></li> <li> › </li> <li class="last"><?php the_title(); ?></li> </ol> </div>