wyróżnienie drugiego wyrazu w zdaniu

  $('h1').each(function(){
    var text = $(this).text().split(' ');
    
    if(text.length < 2)
    return;
    text[1] = '<span>' +text[1]+ '</span>';
    
    $(this).html( text.join(' ') );
  });

javascript

Hope this helps and happy coding :)

Zobacz jeszcze

Pobranie tytułu portalu/ strony WP

Tytuł strony wprowadzony w Settings -> General -> Site Title -> <?php bloginfo( 'name' ); ?> pobranie opisu strony: <?php $description = get_bloginfo( 'description',...

ładny header w WP

Przykład jak można zamieścić header w WP: <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <title><?php if (is_home () ) {...