Excerpt en content
-
Beste,
Ik ben bezig met het omzetten van een HTML template naar wordpress.
Zit alleen met 1 bepaald stukje. Ik heb op de homepage featured items staan (2 om precies te zijn). Hiervoor heb ik een custom post type aangemaakt. Wat ik nu alleen nog wil is dat 1 item een excerpt automatisch ophaald van de desbetreffende pagina(dit is gelukt), alleen wil ik dat bij het andere item the content wordt getoond van dat post bericht. Hoe moet ik dit oplossen in de code?Mijn index.php ziet er als volgt uit:
<?php get_header(); ?> <!-- // Page content should place here... --> <div class="contentbox"> <div class="headerbox"> <img src="<?php bloginfo('template_url') ?>/images/header.jpg" alt="header" /> </div><!-- End .headerbox --> <?php while(have_posts()) : the_post(); ?> <div class="largebox"> <strong><?php the_title(); ?></strong> <br /> <br /> <?php add_filter("the_content", "plugin_myContentFilter"); function plugin_myContentFilter($content) { // Take the existing content and return a subset of it return substr($content, 0, 500); } ?> <?php the_content($content); ?> </div><!-- End .largebox --> <?php endwhile; ?> <?php wp_reset_query(); ?> <?php $args = array('post_type' => 'homepage', 'posts_per_page'); $multiloop = new WP_Query($args); while($multiloop->have_posts()) : $multiloop->the_post(); ?> <div class="itembox"> <?php echo get_the_post_thumbnail(); ?> <div class="textbox"> <?php $getexcerpt_id = 6; $post_id_6 = get_post($getexcerpt_id); $excerpt = $post_id_6->post_excerpt; ?> <?php echo $excerpt; ?> </div><!-- End .textbox --> <a href="<?php echo get_permalink(6); ?>" class="readmore buttons">Lees meer</a><!-- End a.button --> </div><!-- End .itembox --> <?php endwhile; ?> <?php wp_reset_query(); ?> <div class="itembox"> <img src="<?php bloginfo('template_url'); ?>/images/highlight-2.jpg" alt="Highlight 2" /> <div class="textbox"> <strong>Title</strong> <br /> Content here </div><!-- End .textbox --> </div><!-- End .itembox --> <?php get_footer(); ?>
Dankjewel alvast!
Casper
- Het onderwerp ‘Excerpt en content’ is gesloten voor nieuwe reacties.