How to Disable WordPress Embeds Using ...
Learn how to disable WordPress embeds using PHP code with this simple snippet.
...

WPCodeBox
315

This code snippet allows you to easily hide hours and minutes from your countdown block, displaying only the days remaining until an event. Perfect for clean and simple event countdowns.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
ul.countdown-list li:nth-child(2) {
display: none;
}
ul.countdown-list li:last-child {
display: none;
}
.countdown-box .countdown-list li {
margin-right: -20px;
}





