(function($){ function setBreadcrumbs(){ $('div.breadcrumbs-plugin_content-breadcrumbs-block .separator').text(' / '); $('Você está aqui / ').insertBefore($('.breadcrumbs-plugin_content-breadcrumbs-block .block-inner-2').children().first()); } function changeHighlighsBlock() { //Move HighlightsBlock title var title = $('.highlights-block .block-title'); $(title).prependTo('.highlights-block .highlights-border'); //Add span around HighlightsBlock label $('.highlights-block .highlights-label').each(function() { var label = $(this); label.html('
'+label.text()+'
'); }); } function addReadMoreLink() { $('#article.blog .blog-post').each(function() { var link = $(this).find('.title a'); var div = 'leia mais'; $(div).insertAfter($(this).find('.article-compact-image')); }); } $(document).ready(function(){ setBreadcrumbs(); changeHighlighsBlock(); addReadMoreLink(); }); })(jQuery);