• Beste,

    Ik ben bezig met een wordpress website voor een vriendin van me.
    Nu heb ik de theme “Snaps” gebruikt, en pas die hier en daar aan.

    Nu zit ik met een probleem, ik wil mijn berichtenpagina/blog aanpassen. Ik wil gewoon dat de berichten onder elkaar komen te staan maar dit lukt niet goed, het theme gebruikt namelijk thumbnails met daarin de titel.

    Hier het stukje code:

    <?php
    /**
     * @package Snaps
     * @since Snaps 1.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    
    	<div class="post-format-content">
    		<div class="post-thumbnail">
    			<?php if ( has_post_thumbnail() ) { ?>
    				<?php the_post_thumbnail( 'thumbnail' ); ?>
    			<?php } else { ?>
    				<img src="<?php echo get_template_directory_uri();  ?>/images/canvas.png" />
    			<?php } ?>
    		</div>
    
    		<div class="content-wrap">
    			<h1 class="entry-title"><a href="<?php the_permalink(); ?>" class="featured-image" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'snaps' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    		</div>
    	</div>
    
    </article><!-- #post-<?php the_ID(); ?> -->

    Hier de website: http://www.marsmanmedia.nl/crissy/ en dan de pagina dagelijkse kost.

    Kan iemand me helpen hoe ik dit probleem aanpak.

    Groetjes,
    Bert

  • Het onderwerp ‘Berichtenpagina’ is gesloten voor nieuwe reacties.