Website Settings

Dondere modus
Hoog contrast
Font grootte
Lees pagina-inhoud
Afdrukken
  • Het is 11-09-2026 en week 37 in de Herfst .

Account Settings

Winkelwagen

De winkelwagen is nog leeg

WordPress – read more show / hide on page

particle

// WP – Read more for page var $showMore = $(‘span[id*=”more-“]’); $showMore.html(“Lees meer “); var $showMoreNext = $showMore.parent().nextAll(); $showMoreNext.hide(); $showMore.on(‘click’, function() { $showMoreNext.toggle(“slow”); });

Set PHP in htaccess

particle

# Change to PHP version 5.6 AddHandler application/x-httpd-php56 .php .php7 .php5 .php4 .php3 SetHandler application/x-lsphp56 # EOF

Editor-style.css function no caching

particle

// load editor style direct as admin without caching add_action(‘admin_enqueue_scripts’, function(){ if(is_admin()){ – add_editor_style(get_template_directory_uri().’editor-style.css?1′); + add_editor_style(get_template_directory_uri().’/editor-style.css’); } });

Loop number in list

particle

// 15. asterix list // ————- @mixin loop-number { $star : ‘*’; @for $i from 1 through 10 { &:nth-child(#{$i}) { &:before { content: “#{$star}”; } } $star : $star + ‘*’; } } ul li { @include loop-number;}

Home