WordPress

Downgrade WordPress the quick ¿proper? way

If you updated to a new WordPress version and were welcomed with error messages, unaccessible admin interface and isn't worth my time debugging this feelings, these quick steps are for you.

Returning WordPress to a previous version is safe (from a functional perspective) most of the time. You should try to update again once non-compatible plugins get fixed.

Database changes between minor WordPress versions are few, but if you don’t have any kind of disaster recovery plan in place, you’ll be in a safer position if you backup it before restoring WordPress.

Continue Reading →

Video HTML5 vs GIF

El siguiente ejemplo consta de dos formatos distintos para el mismo video, obtenido desde un gif de 4,2 MB de tamaño:

  • WebM: formato libre, soportado por Chrome, Chromium, Firefox y dispositivos Android. Tamaño: 397 KB
  • MP4: utiliza codecs propietarios. Soportado por Safari y dispositivos Apple. Tamaño: 603 KB

 

Vemos como soportar 2 formatos distintos del mismo video (para maximizar compatibilidad) resulta hasta 4 veces más eficiente que utilizar un GIF. El navegador solamente descargará una de las versiones, por lo que la mejora en velocidad y el ahorro en consumo de datos (sobre todo en dispositivos móviles) será aún mayor.

Continue Reading →

Comments link to Disqus in WordPress

Add to your theme functions.php

/* WordPress comments link to Disqus */
 add_filter( 'get_comments_link', 'callback_to_disqus', 10, 2 );
function callback_to_disqus( $link, $post_id ) {
 return get_permalink( $post_id ) . '#disqus_thread';
 }