I use (for tests :)) a basic theme on fresh wp instalation.. I have 2 files:
– your theme file
and index.php and it look like this:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1><a>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>
<?php endwhile; else: ?>
<p><?php _e('Brak wpisów.'); ?></p>
<?php endif; ?>
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
… and i paste plugin code to my theme function.php…
btw. i tested on “twentythirteen” theme and I have this same problem ??