add_action( 'wp_footer', 'art_responsive_tables' );
function art_responsive_tables() {
if ( is_singular() ) {
?>
<script>
jQuery(document).ready(function ($) {
$('article table').wrap('<div class="table-cover"></div>');
});
</script>
<style>
@media screen and (max-width: 1035px) {
.table-cover {
width: 100%;
overflow: auto;
margin: 0 0 1em;
}
}
</style>
<?php
}
}
@media screen and (max-width: 1035px) { // на всех экранах шириной до 1035 пикселей
.table-cover {
width: 100%;
overflow: auto;
margin: 0 0 1em;
}
}