Advertisement
Mwordpress

Wrap bootstrap table responsive

Dec 13th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function mwp_bootstrap_table_responsive() {
  2.     if (is_singular()) {
  3.         ?>
  4.         <script>
  5.         jQuery(document).ready(function($){
  6.             if ($("table").hasClass("table")) {
  7.                 $('table').wrap('<div class="table-responsive"></div>');
  8.             }
  9.         });
  10.         </script>
  11.         <?php
  12.     }
  13. }
  14. add_action('wp_footer', 'mwp_bootstrap_table_responsive');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement