oscarviedma

Script jQuery para agrupar el título, meta y contenido del blog en un div

Apr 2nd, 2021 (edited)
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <script>
  2. // Código para agrupar el título, meta y contenido en un div
  3. jQuery(document).ready(function($){
  4. $(".ov-coverflow-blog .et_pb_post").each(function() {
  5. $(this).find(".entry-title, .post-meta, .post-content ").wrapAll('<div class="ov-meta-content"></div>');
  6. });
  7. });
  8. </script>
Add Comment
Please, Sign In to add comment