Layout – Webdesign

0,00 / maand excl. BTW

Layout kiezen / webdesign aanpassen

Ander webdesign / layout? Dat kan hier heel gemakkelijk!

  1. Gratis: Kies één van de voor geprogrammeerde layouts.
  2. Gratis: Pas je gekozen webdesign naar wens aan.
  3. Kies hier een andere gratis layout: Gratis implementatie.
  4. Kies een andere gratis layout: Vergoeding voor implementatie.
  5. Kies een betaald thema: Vergoeding voor implementatie.
  6. Laat een layout voor je maken.

Andere Layout

Ander Webdesign

Wat kunnen wij voor je doen?

Eénmalige betaling

1. Om welk webdesign gaat het (naam)
2. Waar kunnen wij het vinden
3. Als het in een account staat, mogen wij dan inlog-gegevens opdat wij het kunnen uploaden

Het verwijderen van webdesigns bespaart webruimte. Als er een webdesign extra op je website / webshop wordt gezet, dan kost dat webruimte.

Prijs per maand

Categorie:

Beschrijving

Deze plugin is niet getest met de laatste 3 grotere versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Ook kunnen er compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

Appcachify

Beschrijving

The plugin adds an iframe to the footer of your website which points to example.com/manifest.

That URL is an empty page that references the generated manifest file at example.com/manifest.appcache.

The manifest itself is built in the following way:

  1. adds URLs of all queued scripts and styles
  2. searches theme files and folder for any images or other static assets
  3. if a theme has a 307.php template it is used as an offline fallback
  4. a timestamp of the most recently modified file is added to force appcache to refresh

The net result of all this is that your main static files are stored locally on your visitors devices. For mobile this greatly helps to improve download and rendering times.

Documentation

Adding items to the manifest

Appcache can do more than store static assets. You could cache entire pages, or add fallbacks for when a user is offline.

There are 3 main sections to a manifest:

CACHE

The main CACHE section is for URLs that should be explicitly cached.

<?php add_filter( 'appcache_cache', function( $urls ) {    $urls[] = '/page-available-offline/';    return $urls; } ); ?> 

NETWORK

This section is for specifying URLs that should never be cached.

<?php add_filter( 'appcache_network', function( $urls ) {    $urls[] = '*';    $urls[] = '/online-only-page/';    return $urls; } ); ?> 

FALLBACK

The fallback section allows you to set fallback pages or images if the user is offline.

<?php add_filter( 'appcache_fallback', function( $patterns ) {    $patterns[] = 'wp-content/uploads/ wp-content/uploads/offline.jpg';    return $patterns; } ); ?> 

The update header

Appcaches are refetched when the manifest file content changes so we add a few items as comments at the top of the file.

  1. The current theme (and version if available)
  2. The most recent modified time of any files we find the server path for
  3. The size of all the files that we find a server path for

    get_var( “SELECT post_modified FROM $wpdb->posts WHERE post_type = ‘post’ ORDER BY post_modified DESC LIMIT 1” );
    return $headers;
    } );
    ?>

More about appcache

I strongly recommend learning more about what you can do with appcache by reading the following articles:

Installatie

Upload the plugin to your plugins directory and activate it. There’s no configuration involved or settings screen.

Beoordelingen

26 oktober 2017
Sadly, before my time in the trenches. Just curious, what happened with this?
29 november 2016
My hat down man, this is truly awesome piece of mastery in the world of WordPress caching… for those who know 😉
Lees alle 2 beoordelingen

Bijdragers & ontwikkelaars

“Appcachify” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Appcachify” in je eigen taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

1.0

  • Initial commit to wordpress.org