Website Settings

Dondere modus
Hoog contrast
Font grootte
Lees pagina-inhoud
Afdrukken
  • Het is 24-02-2026 en week 09 in de Winter .

Account Settings

Winkelwagen

De winkelwagen is nog leeg

Essentiële onderdelen voor je digitale motor.

“Een roadtrip is pas geslaagd als elk onderdeel van de machine perfect samenwerkt. Mijn ‘Particles’ zijn de componenten die jouw applicaties, apps en websites laten draaien. Van Laravel-packages die complexe logica versimpelen tot specifieke WordPress-plugins die precies doen wat ze beloven. Ik ben deze deeltjes al sinds 2006 aan het verzamelen en verfijnen. Duik in mijn collectie bouwstenen en vind precies dat ene deeltje dat jouw project nog miste om op topsnelheid te komen.”

Nieuwste Particles

Redirect domein to new domein – htacess redirect

RewriteEngine on RewriteRule ^(.*)$ https://website.nl/$1 [R=301,L]

Cron settings

define( ‘ALTERNATE_WP_CRON’, true ); define( ‘WP_CRON_LOCK_TIMEOUT’, 1 );

Debug settings

Example debug config: // Enable WP_DEBUG mode define( ‘WP_DEBUG’, true ); // Enable Debug logging to the /wp-content/debug.log file define( ‘WP_DEBUG_LOG’, true ); // Disable display of errors and warnings define( ‘WP_DEBUG_DISPLAY’, false ); @ini_set( ‘display_errors’, 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these […]

Plaats loginformulier voor pagina’s die beveiligd zijn

if ( post_password_required() ) { echo get_the_password_form(); return; } of:

Exclude post by id in wp query

Smoothscroll to hash

// smoothscroll to hash //——————— var scrollToTopH = 140; $(“a[href*=#]”) .not(“.no-scroll”) .on(“click”, function(event) { if ($(this.hash).length > 0) { event.preventDefault(); $(“html,body”).animate( { scrollTop: $(this.hash).offset().top – scrollToTopH }, 500 ); } });

Home