¿Cómo es la página inicial de tu blog?

La página inicial de un sitio web debe seguir unas líneas determinadas para optimizar su usabilidad, pero... ¿qué ocurre con las páginas iniciales de los blogs?

La página inicial (o homepage) de cualquier sitio web no es una página más. A menudo se trata de la página más vista, y muchas veces es la primera que visitan los usuarios. Por tanto, debe dar una idea de los contenidos del sitio y servir de “punto de partida” en la navegación, de modo que los usuarios pueden volver a ella después de explorar parte del sitio; y para eso, debe tener un diseño visual diferenciado para que los usuarios la reconozcan de inmediato. Como bien dicen Jakob Nielsen & Marie Tahir en su libro Homepage Usability:

Design the homepage to be clearly different from all the others pages on the site. Either use a slightly different visual design (that still fits with the look and feel of the site) or have a prominent location designator in the navigational apparatus. This visual distinction and navigational signposting ensures that users can recognize their starting point when they return from exploring a new part of the site. 

 Capturas de jordisan.netjordisan.net (este blog): página inicial y un artículo individual

Entonces… ¿qué ocurre con las páginas iniciales de los blogs? Tengo la impresión de, que en muchos de ellos, los dos tipos de páginas más importantes, la página inicial y las páginas de artículos individuales, tienen un aspecto visual idéntico. Hagamos un rápido estudio.

(more…)

WordPress: artículos individuales en un idioma diferente

Un método para incluir artículos en Wordpress en un idioma diferente al idioma principal del blog.

Publicar un blog multilingüe es un trabajo duro: tienes que traducir y mantener cada artículo, además de traducir toda la interfaz. Pero ¿y si tienes un blog monolingüe en un determinado idioma, y ocasionalmente quieres incluir un artículo en un idioma diferente? Puedes simplemente escribir el título y el contenido en ese idioma pero, como indican las directrices de la W3C, adicionalmente debes…

Identificar claramente los cambios en el idioma dentro del texto de un documento y de cualquier equivalente textual . [Prioridad 1]

Así que este es un modo sencillo de marcar un determinado artículo en un idioma diferente, usando campos personalizados en WordPress:

1. Modifica los ficheros de tu plantilla (normalmente single.php, index.php, archive.php) donde aparezca el siguiente código (el bloque div que contiene cada artículo):

<div class="post" id="post-<?php the_ID(); ?>">

Modifícalos añadiendo el código resaltado (para comprobar si existe un campo personalizado lang para ese artículo e incluirlo como idioma del artículo, si no está vacío):

<div class="post" id="post-<?php the_ID(); ?>"<?php $custom = get_post_custom_values('lang'); if ( $custom != '' ) echo ' lang="'. $custom[0] . '"'; ?>>

2. En cada artículo escrito en un idioma diferente al idioma principal del blog, añade un campo personalizado llamado lang y asígnale el código del idioma del artículo (‘en’ para inglés; ‘es’ para español, …)

 Adding custom field 'lang' with value 'en'

3. Y eso es todo. Ahora, cada artículo puede estar identificado con su propio idioma. Por supuesto, no necesitas incluir ese campo si el idioma del artículo es el mismo que el del blog, siempre que ese idioma principal esté identificado en la cabecera de la página web.

Por favor, hazme saber si esto te resulta útil, o si tienes algún error o mejoras que proponer.

WordPress: single posts using different language

A technique to include single Wordpress posts in a different language than the main language of the blog.

Publishing a multilingual blog is a hard task; you have to translate and maintain every single post, besides translating all the interface. But what about if you have a simple monolingual blog, and occasionally want to include a post using a different language? You can just write the title and the content in that language, but, as W3C guidelines says, additionally you should…

Clearly identify changes in the natural language of a document’s text and any text equivalents (e.g., captions). [Priority 1]

So here you are an easy way to mark a single post using a different language, using custom fields in WordPress:

1. Modify your template file(s) (tipically single.php, index.php, archive.php) where the following piece of code appears (the div block containing every single post):


<div class="post" id="post-<?php the_ID(); ?>">

Modify them by adding the highlighted code (to check if there’s a custom field called lang for that single post and include it as the language of the post, if not empty):


<div class="post" id="post-<?php the_ID(); ?>"<?php $custom = get_post_custom_values('lang'); if ( $custom != '' ) echo ' lang="'. $custom[0] . '"'; ?>>

2. For every single post written in a different language than the blog main language, add a custom field called lang and assign it the post’s language code (‘en’ for English; ‘es’ for Spanish, …)

Adding custom field 'lang' with value 'en'

3. And that’s all. Now, every post may be identified with its own language. Of course, you don’t need to include that field if the language of the article is the same language than the blog, as long as the main language is identified in the header of the web page.

Please, let me know it this works for you or if you find any bugs or improvements.