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', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p><?php echo $description; ?></p>
<?php endif; ?>
<?php echo get_bloginfo ('description');?>
–
Hope this helps and happy coding :)
Zobacz jeszcze
Bezpieczne czcionki web
Wykaz bezpiecznych czcionek do zastosowań web. osadzanie: font-family: "Times New Roman", Times, serif; Serif Fonts: font-family: Georgia, serif; font-family:...
font
wyróżnienie drugiego wyrazu w zdaniu
- $('h1').each(function(){ var text = $(this).text().split(' '); if(text.length < 2) return; text = '<span>' +text+ '</span>'; $(this).html(...