R
ramonjosegn
Tengo una página con links hacia varias páginas que tienen diferentes mapas, pero son un poco demorados en carga
Me gustaría saber si existe alguna forma de precargar esas páginas
Gracias
---------- Post agregado el 23-dic-2013 hora: 14:29 ----------
acá explican cómo hacerlo con posts pero ni idea cómo sería el código para una página
Prerendering first post in your home - WordPress - Rick's code
---------- Post agregado el 23-dic-2013 hora: 14:33 ----------
acá explican cómo pero sólo para el frontpage
Simple Prefetch and Prerender | Patrick Chia
Me gustaría saber si existe alguna forma de precargar esas páginas
Gracias
---------- Post agregado el 23-dic-2013 hora: 14:29 ----------
acá explican cómo hacerlo con posts pero ni idea cómo sería el código para una página
Prerendering first post in your home - WordPress - Rick's code
<?php
if( is_home() ){
$first_post_args = array( 'numberposts' => 1, 'orderby' => 'post_date', 'order' => 'DESC' );
$first_post_array = get_posts( $first_post_args );
foreach ( $first_post_array as $first_post ) : setup_postdata( $first_post ); ?>
<link rel="prerender" href="<?php the_permalink(); ?>" />
<?php endforeach;
wp_reset_postdata();
}
?>
---------- Post agregado el 23-dic-2013 hora: 14:33 ----------
acá explican cómo pero sólo para el frontpage
Simple Prefetch and Prerender | Patrick Chia
Última edición: