Some help (please) with the template
-
I would like to use this plugin but I’m struggling with the creation of the template. I hope to find some help here.
The way categoies are displayed in my theme (Nimble from Elegant Themes) is defined in entry.php (see below).
I hope to add this code in the LCP template system so both the LCP results and the categories are displayed the same way.
All help is very welcome.
Kind regards,
Yves
<?php $i = 1; $open_row = false; if ( have_posts() ) : while ( have_posts() ) : the_post(); $last_class = $i % 2 == 0 ? ' last' : ''; if ( ( $i + 1 ) % 2 == 0 ){ echo '<div class="row clearfix">'; $open_row = true; } ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'entry clearfix' . $last_class ); ?>> <?php $index_postinfo = et_get_option( 'nimble_postinfo1' ); $thumb = ''; $width = (int) apply_filters('et_blog_image_width',260); $height = (int) apply_filters('et_blog_image_height',170); $classtext = ''; $titletext = get_the_title(); $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'Blogimage'); $thumb = $thumbnail["thumb"]; ?> <?php if ( 'on' == et_get_option('nimble_thumbnails_index','on') && '' != $thumb ){ ?> <div class="post-thumbnail "> <a href="<?php the_permalink(); ?>"> <?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?> </a> </div> <!-- end .post-thumbnail --> <?php } ?> <div class="post-title"> <h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> </div> <div id="post-description"> <div class="post_content clearfix"> <?php if ( 'on' == et_get_option('nimble_use_excerpt') ) echo '<p>' . truncate_post(210,false) . '</p>'; else ; ?> </div> <!-- end .post_content --> </div> <a href="<?php the_permalink(); ?>" class="learn-more"><?php esc_html_e( 'Meer...', 'Nimble' ); ?></a> </article> <!-- end .entry --> <?php if ( $i % 2 == 0 ){ echo '</div> <!-- end .row -->'; $open_row = false; } $i++; endwhile; if ( $open_row ) echo '</div> <!-- end .row -->'; if ( function_exists('wp_pagenavi') ) { wp_pagenavi(); } else { get_template_part( 'includes/navigation', 'entry' ); } else: get_template_part( 'includes/no-results','entry' ); endif; ?>
- The topic ‘Some help (please) with the template’ is closed to new replies.