All current
—
#main-menu ul li[class*="current"] > a { background-color: #b9c9d8; color: #fff; }
—
Hope this helps and happy coding :)
Zobacz jeszcze
excerpt
-- function the_excerpt_max_charlength($charlength) { $excerpt = get_the_excerpt(); $charlength++; if ( mb_strlen( $excerpt ) > $charlength ) { $subex = mb_substr( $excerpt, 0,...
Wordpress
Pobranie nazwy, linku do strony przez ID
-- <?php echo get_the_title(332); ?> <?php echo esc_url(get_permalink(332)); ?> <a href="<?php echo esc_url( get_permalink( get_page_by_title( 'Monthly Events' ) )...