Cómo eliminar la imagen principal del interior del post.
-
Hola amigos,
He leído foros sobre cómo quitar la «featured picture» del interior del post, para que solo aparezca en la página de inicio o en la galería. En casi todos coinciden que hay que entrar en el editor de apariencia, en single post (single. php), eliminar el renglón que contenga thumbnail. Lo que ocurre es que en mi código no aparece thumbnail. Esto es lo que dice:<?php /** * The template for displaying all single posts. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post * * @package resi */ get_header(); ?> <?php if ( 'option1' == resi_sanitize_index_content( get_theme_mod( 'resi_blog_sidebar_setting', 'option1' ) ) ) : //Fullwidth and no sidebar ?> <div class="grid grid-pad solid-background single-fullwidth"> <?php else : ?> <div class="grid grid-pad solid-background single-sidebar"> <?php endif; ?> <?php if ( 'option1' == resi_sanitize_index_content( get_theme_mod( 'resi_blog_sidebar_setting', 'option1' ) ) ) : //Fullwidth and no sidebar ?> <div class="col-1-1"> <?php else : ?> <div class="col-9-12"> <?php endif; ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'template-parts/content', 'single' ); ?> <?php the_post_navigation(); ?> <?php // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) : comments_template(); endif; ?> <?php endwhile; // End of the loop. ?> </main><!-- #main --> </div><!-- #primary --> <?php if ( 'option1' == resi_sanitize_index_content( get_theme_mod( 'resi_blog_sidebar_setting', 'option1' ) ) ) : //Fullwidth and no sidebar ?> </div> <?php else : ?> </div> <?php endif; ?> <?php if ( 'option1' == resi_sanitize_index_content( get_theme_mod( 'resi_blog_sidebar_setting', 'option1' ) ) ) : //Fullwidth and no sidebar ?> <?php else : ?> <?php get_sidebar(); ?> <?php endif; ?> <?php if ( 'option1' == resi_sanitize_index_content( get_theme_mod( 'resi_blog_sidebar_setting', 'option1' ) ) ) : //Fullwidth and no sidebar ?> </div> <?php else : ?> </div> <?php endif; ?> <?php get_footer(); ?>
Os agradecería vuestra ayuda, ya que soy nueva en esto, y con el tema de códigos y programación estoy bastante perdida.
Gracias!
Viendo 3 respuestas - de la 1 a la 3 (de un total de 3)
Viendo 3 respuestas - de la 1 a la 3 (de un total de 3)
- El debate ‘Cómo eliminar la imagen principal del interior del post.’ está cerrado a nuevas respuestas.