Hallo,
ich habe mit Hilfe des Programms Artisteer ein neues Blogtheme gestaltet. Es funktioniert bisher auch alles einwandfrei. Nur die Anzeige des Artikelbildes gefällt mir nicht. (http://forum.wordpress-deutschland.org/www.bellaswonderworld.de)
Als ich noch mit dem Theme Twenty Ten gearbeitet habe wurden die Artikelbilder nur angezeigt, wenn ich einen More Tag im Artikel eingefügt habe. Bei dem neuen Theme werden diese jedoch immer angezeigt.
Weiß vielleicht jemand wie ich das ändern kann, das die Bilder wie vorher angezeigt werden?
Die single.php sieht bei mir so aus:
<?php get_header(); ?>
<div class="art-content-layout">
<div class="art-content-layout-row">
<div class="art-layout-cell art-sidebar1">
<?php get_sidebar('default'); ?>
<div class="cleared"></div>
</div>
<div class="art-layout-cell art-content">
<?php
get_sidebar('top');
global $post;
if (have_posts()){
if (art_get_option('art_single_pagination')) {
// previous_post_link | next_post_link
art_pagination(array('next_link' => art_get_previous_post_link('« %link'),'prev_link' => art_get_next_post_link('%link »')));
}
while (have_posts())
{
the_post();
art_post_wrapper(
array(
'id' => art_get_post_id(),
'class' => art_get_post_class(),
//'thumbnail' => art_get_post_thumbnail(),
'title' => art_get_meta_option($post->ID, 'art_show_post_title') ? get_the_title() : '',
'before' => art_get_metadata_icons('date,author,edit', 'header'),
'content' => art_get_content(), // 'content' => 'My post content',
'after' => art_get_metadata_icons('category,tag', 'footer')
)
);
comments_template();
}
} else {
art_post_wrapper(
array(
'title' => __('Not Found', THEME_NS),
'content' => '<p class="center">'
.__( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', THEME_NS)
. '</p>' . "\r\n" . art_get_search()
)
);
}
get_sidebar('bottom');
?>
<div class="cleared"></div>
</div>
<div class="art-layout-cell art-sidebar2">
<?php get_sidebar('secondary'); ?>
<div class="cleared"></div>
</div>
</div>
</div>
<div class="cleared"></div>
<script>linkwithin_text='Das könnte dir auch gefallen:'</script>
<?php get_footer();
LG
Whitesences