dodanie klasy do co trzeciego elementu

aby dodać klasę do co trzeciego elementu w liście wprowadzamy w js kod:

$(".featured.module").filter(function(index, element){
    return index % 3 == 2;
}).addClass("third");

javascript

Hope this helps and happy coding :)

Zobacz jeszcze

własny shortcode WP

aby dodać własny shortcode należy w function.php wprowadzić kod: // foto info single page function text_info( $atts, $content = null ) { return '<span class="text_info">'...

dodanie obrazka na stronie - różne sposoby

dodanie obrazka z pola ACF z opcją obiect image: <div class="home-slider-inner"> <?php while ( have_rows('slider') ) : the_row(); $imgID = get_sub_field('image'); $img...