Hi,
after reading several posts i could identify the reason for falsly displaying the thumbnail galery. But i do not understand why.
(It might be a differnt toppic, but might apply for others as well)
I did adjust the footer of my page. After deleting and restoring the original theme (Twenty Ten) footer everything works fine again. I tested this with the TwentyEleven Footer as well. Same proplem.
Here my Footer as i changed it, to give you a hint. Maybe you can tell me, where the problem is. On the online version i changed it back.
https://lindenhof-schnellbach.de
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
?>
</div><!– #main –>
<div id=”footer” role=”contentinfo”>
<div id=”colophon”>
<?php
/* A sidebar in the footer? Yep. You can can customize
* your footer with four columns of widgets.
*/
get_sidebar( ‘footer’ );
?>
<div id=”site-info”>
<p>Copyright © <?php echo date(‘Y’);?> |?
” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?> is proudly powered by ” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyten’ ); ?>”><?php printf( __( ‘%s’, ‘twentyten’ ), ‘WordPress’ ); ?> |?Impressum | Theme TwentyTen | Webdesign by Schaack Web </p>
<?php wp_footer(); ?>
</div><!– #site-info –>
</div><!– #colophon –>
</div><!– #footer –>
</div><!– #wrapper –>
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>