Website Settings

Dondere modus
Hoog contrast
Font grootte
Lees pagina-inhoud
Afdrukken
  • Het is 07-04-2026 en week 15 in de Lente .

Account Settings

Winkelwagen

De winkelwagen is nog leeg

defer=”defer”

particle

verteld de browser om te wachten tot hij klaar is met inladen. https://stackoverflow.com/questions/5250412/how-exactly-does-script-defer-defer-work https://bitsofco.de/async-vs-defer/

feautred image in rss feed

particle

// Ads featured image to rss feed add_filter( ’the_content’, ‘featured_image_in_feed’ ); function featured_image_in_feed( $content ) { global $post; if( is_feed() ) { if ( has_post_thumbnail( $post->ID ) ){ $output = get_the_post_thumbnail( $post->ID, ‘medium’, array( ‘style’ => ‘float:right; margin:0 0 10px 10px;’ ) ); $content = $output . $content; } } return $content; } of

rss templates

particle

/** * Deal with the custom RSS templates. */ function my_custom_rss() { if ( ‘event’ === get_query_var( ‘post_type’ ) ) { get_template_part( ‘page-templates/feed’, ‘events’ ); } else { get_template_part( ‘page-templates/feed’, ‘rss2’ ); } } remove_all_actions( ‘do_feed_rss2’ ); add_action( ‘do_feed_rss2’, ‘my_custom_rss’, 10, 1 );

Home