Ich habe mal geguckt, in der index.php des Themes steht nur folgendes:
PHP
<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link http://codex.wordpress.org/Template_Hierarchy
*
* @package sosimple
*/
get_header();
?>
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'parts/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php sosimple_pagination(); ?>
<?php else : ?>
<?php get_template_part( 'parts/no-results', 'index' ); ?>
<?php endif; ?>
</main><!-- #main -->
<?php get_footer(); ?>
Alles anzeigen