WordPress 4.7 update removing tags and atrributes. Breaking a Bootstrap Carousel
-
I’ve recently upgraded to WP 4.7 and it broke some things, mainly on my bootstrap carousel and some empty <span> tags that were there to show icons via CSS.
I have a bootstrap carousel that has the carousel indicators (bullets).
The code I have for showing the indicators is:
<li data-target="#myCarousel" data-slide-to="<?php echo $i; ?>" <?php echo $activo; ?>></li>
It should output this:
<li data-target="#myCarousel" data-slide-to="1" class="active"></li>
But since updating to 4.7 it’s outputting:
<li></li>
Any ideas?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘WordPress 4.7 update removing tags and atrributes. Breaking a Bootstrap Carousel’ is closed to new replies.