Cronología de un mundo civilizado
- Autor: Miguel Oñate
- Precio: 10.500 € + IVA
- Medidas: 170 x 160 cm
- Técnica: Acrílico y esmalte sobre lienzo
jQuery(document).ready(function(jQuery) { // Creamos un contenedor para el texto en cada artículo jQuery('.pa-blog-list .et_pb_post').each(function() { // Obtener la imagen destacada var featuredImage = jQuery(this).find('.entry-featured-image-url'); // Crear un contenedor para el texto var textContainer = jQuery('
'); // Mover el título y el contenido al contenedor de texto jQuery(this).find('.entry-title, .post-content').appendTo(textContainer); // Limpiar el artículo y añadir los elementos en orden jQuery(this).empty().append(featuredImage).append(textContainer); }); });