In der Datei single.php gibt's kein thumbnail. Bei function.php gibt's eins, aber das habe ich schon versucht. Wenn ich das rauslösche, ändert sich rein gar nichts. Noch eine andere Idee?
So sieht die single.php aus:
<?php
/**
* The template for displaying all single posts.
*
* @package Tesseract
*/
get_header(); ?>
<div id="primary" class="full-width-page">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'single' ); ?>
<?php tesseract_post_nav(); ?>
<?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 get_footer(); ?>