Seguro que te ha pasado: al crear un post quieres que dentro aparezca la misma imagen que le pones como destacada para ahorrar esfuerzos.
En este post te presentamos dos opciones para resolverlo: en la primera veremos como mostrar la imagen destacada antes del título de post, y la segunda como colocarla después del título.
Colocar la imagen destacada antes del título de post
Para mostrar la imagen antes del titulo del post, para ello debemos incluir el siguiente código en el functions.php de nuestro WordPress:
[php]
/* Show the featured image in the single posts before the title */
add_action(‘genesis_before_entry’, ‘show_featured_image_before_title’, 10);
function show_featured_image_before_title() {
if (!is_singular(‘post’))
return;
the_post_thumbnail(‘large’);
}
[/php]
Otra opción para este propósito es usar el plugin https://es.wordpress.org/plugins/genesis-simple-hooks/ copiando el siguiente código en el campo del hook «genesis_before_entry»
[php]
<?php
if (!is_singular(‘post’))
return;
the_post_thumbnail(‘large’);
?>
[/php]
Colocar la imagen después del título de post
Para mostrar la imagen entre el título y el contenido del post debemos incluir el siguiente código en el functions.php
[php]
/* Show the featured image in the single posts before the content */
add_action(‘genesis_before_entry_content’, ‘show_featured_image_before_content’, 10);
function show_featured_image_before_content() {
if (!is_singular(‘post’))
return;
the_post_thumbnail(‘large’);
}
[/php]
Otra opcion para este propostito es usar el plugin https://es.wordpress.org/plugins/genesis-simple-hooks/ copiando el siguente codigo en el campo del hook «genesis_before_entry_content»
[php]
<?php
if (!is_singular(‘post’))
return;
the_post_thumbnail(‘large’);
?>
[/php]
Es importante tener en cuenta que si editas el código, este se perderá al actualizar el Theme y deberás volver a insertarlo si quieres que la funcionalidad comentada en este post siga vigente.
Esperamos que te resulte útil :)
Equipo de AsiThemes