• Resolved lawrences

    (@lawrences)


    Hello.

    I’m currently building a website using wordpress. I’m trying to show on a page only the posts of a certain category which has the ID=5. I’m using the Evolve theme and the page is set on a custom blog template that it is included in the theme pack.

    I tried to accomplish the showing of those posts by using this plugin.

    I used the shortcode [catlist id=5] in the page editor, but it doesn’t do any change whatsoever to the content that’s shown on the page.

    The custom template is:

    <?php
    /**
     * Template Name: Blog
     *
     * @package EvoLve
     * @subpackage Template
     */
    get_header();
    $evolve_layout = evolve_get_option('evl_layout','2cl');
    
    if ($evolve_layout == "1c") {
    //do nothing.
    } else { 
    
    	if(get_post_meta($post->ID, 'evolve_full_width', true) == 'yes'){
    	//do nothing
    	}else{
    
    		if (($evolve_layout == "3cm" || $evolve_layout == "3cl" || $evolve_layout == "3cr")) {
    			get_sidebar('2');
    		}
    
    	}
    
    } 
    
    get_template_part( 'content', 'blog' );
    
    if ($evolve_layout == "1c"){
    //do nothing
    } else { 
    
    	wp_reset_query(); 
    
    	if(get_post_meta($post->ID, 'evolve_full_width', true) == 'yes'){
    	//do nothing
    	}else{
    	  get_sidebar();
    	} 
    
    }
    get_footer();
    ?>

    I’ve researched and I’ve seen that not having the function the_content(); called in the template disables the usage of shortcodes. I tried to work it around, but I couldn’t get it done whatsoever.

    Is there any solution to this matter?

    Thanks.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Use do_shortcode in your template file. Put this where you want the output of the shortcode to appear:

    echo do_shortcode( '[catlist id=5]' );

    this line:
    get_template_part( 'content', 'blog' );
    is calling a content-blog.php template;
    what is the full code of that template of your theme?

    what theme are you using?

    Thread Starter lawrences

    (@lawrences)

    Use do_shortcode in your template file. Put this where you want the output of the shortcode to appear:

    echo do_shortcode( ‘[catlist id=5]’ );

    Tried it before and after the get_template_part call, it just inserts a hyperlink to the post in the page, I need a post presented as in a blog.

    his line:
    get_template_part( ‘content’, ‘blog’ );
    is calling a content-blog.php template;
    what is the full code of that template of your theme?

    what theme are you using?

    I’m using this theme.

    content-blog.php code

    <?php
    $first = "";
    global $authordata;
    $xyz = "";
    
    $evolve_layout = evolve_get_option('evl_layout','2cl');
    $evolve_post_layout = evolve_get_option('evl_post_layout','two');
    $evolve_nav_links = evolve_get_option('evl_nav_links','after');
    $evolve_header_meta = evolve_get_option('evl_header_meta','single_archive');
    $evolve_excerpt_thumbnail = evolve_get_option('evl_excerpt_thumbnail','0');
    $evolve_share_this = evolve_get_option('evl_share_this','single');
    $evolve_post_links = evolve_get_option('evl_post_links','after');
    $evolve_similar_posts = evolve_get_option('evl_similar_posts','disable');
    $evolve_featured_images = evolve_get_option('evl_featured_images','1');
    $evolve_breadcrumbs = evolve_get_option('evl_breadcrumbs','1');
    ?>
    
    <!--BEGIN #primary .hfeed-->
    <div id="primary" class="<?php evolve_layout_class($type = 1); ?>">
    
    	<?php
    	if ($evolve_breadcrumbs == "1"):
    		if (!is_home() || !is_front_page()):
    			evolve_breadcrumb();
    		endif;
    	endif;
    	?>
    
    	<!-- 2 or 3 columns begin -->
    
    	<?php
    	if ($evolve_post_layout == "two" || $evolve_post_layout == "three") {
    
    	$temp = $wp_query;
    	$wp_query= null;
    	$wp_query = new WP_Query();
    	$wp_query->query('posts_per_page=6'.'&paged='.$paged);
    
    	?>
    
    	<?php if (($evolve_nav_links == "before") || ($evolve_nav_links == "both")) : ?>
    	<span class="nav-top">
    	<?php get_template_part( 'navigation', 'index' ); ?>
    	</span>
    	<?php endif; ?>
    
    	<?php while ($wp_query->have_posts()) : $wp_query->the_post(); $first++; ?>
    
    		<!--BEGIN .hentry-->
    		<div id="post-<?php the_ID(); ?>" class="<?php semantic_entries(); evolve_post_class($xyz);$xyz++; ?> margin-40">
    
    			<?php if (($evolve_header_meta == "") || ($evolve_header_meta == "single_archive")) : ?>
    
    				<h1 class="entry-title">
    					<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to ', 'evolve' ).the_title(); ?>">
    						<?php if ( get_the_title() ){ $title = the_title('', '', false); echo evolve_truncate($title, 40, '...'); } ?>
    					</a>
    				</h1>
    
    				<!--BEGIN .entry-meta .entry-header-->
    				<div class="entry-meta entry-header">
    					<a href="<?php the_permalink() ?>"><span class="published updated"><?php the_time(get_option('date_format')); ?></span></a>
    					<span class="author vcard">
    						<?php _e( 'Written by', 'evolve' ); ?> <strong><?php printf( '<a class="url fn" href="' . get_author_posts_url( $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( 'View all posts by %s', $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></strong>
    					</span>
    
    					<?php edit_post_link( __( 'edit', 'evolve' ), '<span class="edit-post">', '</span>' ); ?>
    
    				<!--END .entry-meta .entry-header-->
    				</div>
    
    				<?php else: ?>
    
    				<h1 class="entry-title">
    					<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'evolve' ); ?> <?php the_title(); ?>">
    					<?php
    					if ( get_the_title() ){
    					$title = the_title('', '', false);
    					echo evolve_truncate($title, 40, '...');
    					}
    					?>
    					</a>
    				</h1>
    
    				<?php
    				if ( current_user_can( 'edit_post', $post->ID ) ):
    					edit_post_link( __( 'EDIT', 'evolve' ), '<span class="edit-post edit-attach">', '</span>' );
    				endif;
    				?>
    
    			<?php endif;//if (($evolve_header_meta == "") ?>
    
    			<!--BEGIN .entry-content .article-->
    			<div class="entry-content article">
    
    					<?php if ($evolve_featured_images == "1") : ?>
    
    						<?php if (has_post_thumbnail()) : ?>
    
    						<span class="thumbnail-post">
    							<a href="<?php the_permalink(); ?>">
    								<?php the_post_thumbnail('post-thumbnail'); ?>
    								<div class="mask">
    									<div class="icon"></div>
    								</div>
    							</a>
    						</span>
    
    						<?php else: $image = evolve_get_first_image(); ?>
    
    							<?php if ($image): ?>
    
    							<span class="thumbnail-post">
    								<a href="<?php the_permalink();?>"><img src="<?php echo $image; ?>" alt="<?php the_title(); ?>" />
    									<div class="mask">
    										<div class="icon"></div>
    									</div>
    								</a>
    							</span>
    
    							<?php else: ?>
    
    							<span class="thumbnail-post">
    								<a href="<?php the_permalink(); ?>">
    									<img src="<?php echo get_template_directory_uri() . '/library/media/images/no-thumbnail.jpg'; ?>" alt="<?php the_title(); ?>" />
    										<div class="mask">
    											<div class="icon"></div>
    										</div>
    								</a>
    							</span>
    
    							<?php endif;//if ($image): ?>
    
    						<?php endif;//if (has_post_thumbnail()) : ?>
    
    					<?php endif;//if ($evolve_featured_images == "1"): ?>
    
    					<?php echo evolve_excerpt_max_charlength(350); ?>
    
    					<div class="entry-meta entry-footer">
    
    						<div class="read-more btn btn-right icon-arrow-right">
    							<a href="<?php the_permalink(); ?>"><?php _e('READ MORE', 'evolve' ); ?></a>
    						</div>
    
    						<?php if ( comments_open() ) : ?>
    							<span class="comment-count"><?php comments_popup_link( __( 'Leave a Comment', 'evolve' ), __( '1 Comment', 'evolve' ), __( '% Comments', 'evolve' ) ); ?></span>
    						<?php endif; ?>
    
    					</div><!-- /.entry-meta -->
    
    				<div class="clearfix"></div>
    			</div><!--END .entry-content .article-->
    
    		<!--END .hentry-->
    		</div>
    
    	<?php endwhile; ?>
    
    	<?php get_template_part( 'navigation', 'index' ); ?>
    
    	<?php $wp_query = null; $wp_query = $temp;?>
    
    	<!-- 2 or 3 columns end -->
    
    	<!-- 1 column begin -->
    
    	<?php } else { ?>
    
    	<?php
    	$temp = $wp_query;
    	$wp_query= null;
    	$wp_query = new WP_Query();
    	$wp_query->query('posts_per_page=6'.'&paged='.$paged);
    	?>
    
    	<?php if (($evolve_nav_links == "before") || ($evolve_nav_links == "both")) : ?>
    	<span class="nav-top">
    	<?php get_template_part( 'navigation', 'index' ); ?>
    	</span>
    	<?php endif; ?>
    
    	<?php while ($wp_query->have_posts()) : $wp_query->the_post(); $first++; ?>
    
    		<!--BEGIN .hentry-->
    		<div id="post-<?php the_ID(); ?>" class="<?php semantic_entries(); ?> <?php evolve_post_class_2(); ?>">
    
    		<?php $evolve_header_meta = evolve_get_option('evl_header_meta','disable'); if (($evolve_header_meta == "") || ($evolve_header_meta == "single_archive")) { ?>
    
    			<h1 class="entry-title">
    				<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'evolve' ); ?> <?php the_title(); ?>">
    					<?php if ( get_the_title() ){ the_title(); } ?>
    				</a>
    			</h1>
    
    			<!--BEGIN .entry-meta .entry-header-->
    			<div class="entry-meta entry-header">
    				<a href="<?php the_permalink() ?>"><span class="published updated"><?php the_time(get_option('date_format')); ?></span></a>
    
    				<?php if ( comments_open() ) : ?>
    					<span class="comment-count">
    						<a href="<?php comments_link(); ?>"><?php comments_popup_link( __( 'Leave a Comment', 'evolve' ), __( '1 Comment', 'evolve' ), __( '% Comments', 'evolve' ) ); ?></a>
    					</span>
    				<?php endif; ?>
    
    				<span class="author vcard">
    					<?php
    					$evolve_author_avatar = evolve_get_option('evl_author_avatar','0');
    					if ($evolve_author_avatar == "1") {
    						echo get_avatar( get_the_author_meta('email'), '30' );
    					}
    					?>
    
    					<?php _e( 'Written by', 'evolve' ); ?> <strong><?php printf( '<a class="url fn" href="' . get_author_posts_url( $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( 'View all posts by %s', $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></strong>
    				</span>
    
    				<?php edit_post_link( __( 'edit', 'evolve' ), '<span class="edit-post">', '</span>' ); ?>
    				<!--END .entry-meta .entry-header-->
    			</div>
    
    			<?php } else { ?>
    
    			<h1 class="entry-title">
    				<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'evolve' ); ?> <?php the_title(); ?>">
    					<?php if ( get_the_title() ){ the_title();} ?>
    				</a>
    			</h1>
    
    			<?php if ( current_user_can( 'edit_post', $post->ID ) ): ?>
    				<?php edit_post_link( __( 'EDIT', 'evolve' ), '<span class="edit-post edit-attach">', '</span>' ); ?>
    			<?php endif; ?>
    
    			<?php } ?>
    
    			<!--BEGIN .entry-content .article-->
    			<div class="entry-content article">
    
    			<?php if ($evolve_featured_images == "1") { ?>
    
    				<?php if (has_post_thumbnail()) : ?>
    
    				<span class="thumbnail-post">
    					<a href="<?php the_permalink(); ?>">
    						<?php the_post_thumbnail('post-thumbnail'); ?>
    						<div class="mask">
    							<div class="icon"></div>
    						</div>
    					</a>
    				</span>
    
    				<?php else: $image = evolve_get_first_image(); ?>
    
    					<?php if ($image): ?>
    
    						<span class="thumbnail-post">
    							<a href="<?php the_permalink();?>"><img src="<?php echo $image; ?>" alt="<?php the_title(); ?>" />
    								<div class="mask">
    									<div class="icon"></div>
    								</div>
    							</a>
    						</span>
    
    					<?php else: ?>
    
    						<span class="thumbnail-post">
    							<a href="<?php the_permalink(); ?>">
    								<img src="<?php echo get_template_directory_uri() . '/library/media/images/no-thumbnail.jpg'; ?>" alt="<?php the_title(); ?>" />
    									<div class="mask">
    										<div class="icon"></div>
    									</div>
    							</a>
    						</span>
    
    					<?php endif;//if ($image): ?>
    
    				<?php endif;//if (has_post_thumbnail()) : ?>
    
    			<?php } ?>
    
    			<?php if (($evolve_excerpt_thumbnail == "1")) : ?>
    
    				<?php the_excerpt();?>
    
    				<div class="read-more btn btn-right icon-arrow-right">
    					<a href="<?php the_permalink(); ?>"><?php _e('READ MORE', 'evolve' ); ?></a>
    				</div>
    
    			<?php else: ?>
    
    				<?php the_content( __('READ MORE »', 'evolve' ) ); ?>
    
    				<?php wp_link_pages( array( 'before' => '<div id="page-links"><p><strong>'.__( 'Pages', 'evolve' ).':</strong>', 'after' => '</p></div>' ) ); ?>
    
    			<?php endif; ?>
    
    			<!--END .entry-content .article-->
    			<div class="clearfix"></div>
    			</div>
    
    				<!--BEGIN .entry-meta .entry-footer-->
    				<div class="entry-meta entry-footer row">
    
    					<div class="col-md-6">
    					<?php if ( evolve_get_terms( 'cats' ) ) { ?>
    						<div class="entry-categories"> <?php echo evolve_get_terms( 'cats' ); ?></div>
    					<?php } ?>
    					<?php if ( evolve_get_terms( 'tags' ) ) { ?>
    						<div class="entry-tags"> <?php echo evolve_get_terms( 'tags' ); ?></div>
    					<?php } ?>
    
    				<!--END .entry-meta .entry-footer-->
    				</div>
    
    				<div class="col-md-6">
    					<?php if (($evolve_share_this == "single_archive") || ($evolve_share_this == "all")) {
    					evolve_sharethis(); } else { ?> <div class="margin-40"></div> <?php }?>
    				</div>
    			</div>
    
    		<!--END .hentry-->
    		</div>
    
    	<?php comments_template(); ?>
    
    	<?php endwhile; ?>
    
    	<?php if (($evolve_nav_links == "") || ($evolve_nav_links == "after") || ($evolve_nav_links == "both")) { ?>
    
    	<?php get_template_part( 'navigation', 'index' ); ?>
    
    	<?php } else {?>
    
    	<?php } ?>
    
    	<?php $wp_query = null; $wp_query = $temp;?>
    
    	<?php } ?>
    
    	<!-- 1 column end -->
    
    <!--END #primary .hfeed-->
    </div>

    Thanks to both of you, still looking for a complete solution though.

    Thread Starter lawrences

    (@lawrences)

    Modified in the content-blog.php the creation of the query from
    $wp_query = new WP_Query(); to $wp_query = new WP_Query("cat=5");, didn’t work.
    Then I tried with $wp_query = new WP_Query( array( 'cat' => 5 ) );. Didn’t work, too.
    Any ideas?

    Thanks.

    Thread Starter lawrences

    (@lawrences)

    Got it working with if ( in_category( '5' ) ) : [code] endif; added in the loop. Thanks

    I am using the same template and having the same issue.
    I am not code savy but am great at omitting and adding code.

    This is my content-blog.php
    Where should I place the code to get my shortcodes working on my pages?

    <?php $first = "";
           global $authordata;
           $xyz = "";
           $options = get_option('evolve');
     		   $evolve_layout = evolve_get_option('evl_layout','2cl');
    	     $evolve_post_layout = evolve_get_option('evl_post_layout','two');
     		   $evolve_nav_links = evolve_get_option('evl_nav_links','after');
           $evolve_header_meta = evolve_get_option('evl_header_meta','single_archive');
           $evolve_excerpt_thumbnail = evolve_get_option('evl_excerpt_thumbnail','0');
    	     $evolve_share_this = evolve_get_option('evl_share_this','single');
     	     $evolve_post_links = evolve_get_option('evl_post_links','after');
     	     $evolve_similar_posts = evolve_get_option('evl_similar_posts','disable');
           $evolve_featured_images = evolve_get_option('evl_featured_images','1');
    ?>
    
      <!--BEGIN #primary .hfeed-->
    				<div id="primary" class="<?php if ($evolve_layout == "1c") {echo ' col-md-12';} 
    
          else {echo ' col-xs-12 col-sm-6'; if (($evolve_layout == "2cr" && ($evolve_post_layout == "two") || $evolve_layout == "2cl" && ($evolve_post_layout == "two"))) { echo ' col-md-8';}  if (($evolve_layout == "3cm" || $evolve_layout == "3cl" || $evolve_layout == "3cr")) {echo ' col-md-6';} else {echo ' col-md-8'; }  if ( is_single() || is_page() ) { echo ' col-single';  } } ?>
    
          <?php
          $content_css = '';
        	if(get_post_meta($post->ID, 'evolve_full_width', true) == 'yes'):
    			$content_css = ' full-width';
    		  echo $content_css;endif;?>">
    
          <?php
          $evolve_breadcrumbs = evolve_get_option('evl_breadcrumbs','1');
          if ($evolve_breadcrumbs == "1"):
          if (!is_home() || !is_front_page()): evolve_breadcrumb();
          endif;
          endif; ?>
    
     <!-- 2 or 3 columns begin -->
    
    <?php $options = get_option('evolve'); if ($evolve_post_layout == "two" || $evolve_post_layout == "three") { ?>       
    
          <?php
    $temp = $wp_query;
    $wp_query= null;
    $wp_query = new WP_Query();
    $wp_query->query('posts_per_page=6'.'&paged='.$paged);
    
     if (($evolve_nav_links == "before") || ($evolve_nav_links == "both")) { ?>
    				   <span class="nav-top">
    				<?php get_template_part( 'navigation', 'index' ); ?>
            </span>
    
            <?php } 
    
    while ($wp_query->have_posts()) : $wp_query->the_post(); $first++;
    ?>
    
    				<!--BEGIN .hentry-->
    				<div id="post-<?php the_ID(); ?>" class="<?php semantic_entries(); if ($evolve_post_layout == "two") { echo ' col-md-6 odd'.($xyz++%2); } else { echo ' col-md-4 odd'.($xyz++%3); } ?> <?php if (has_post_format( array('aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'),'')) { echo 'formatted-post'; } ?>  margin-40">
    
              <?php $options = get_option('evolve'); if (($evolve_header_meta == "") || ($evolve_header_meta == "single_archive"))
            { ?>
    
    					<h1 class="entry-title">
    
              <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    <?php
    if ( get_the_title() ){ $title = the_title('', '', false);
    echo evolve_truncate($title, 40, '...'); }
     ?></a> 
    
              </h1>
    
    					<!--BEGIN .entry-meta .entry-header-->
    					<div class="entry-meta entry-header">
              <a href="<?php the_permalink() ?>"><span class="published updated"><?php the_time(get_option('date_format')); ?></span></a>
              <span class="author vcard">
    
              <?php _e( 'Written by', 'evolve' ); ?> <strong><?php printf( '<a class="url fn" href="' . get_author_posts_url( $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( 'View all posts by %s', $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></strong></span>
    
    						 <?php edit_post_link( __( 'edit', 'evolve' ), '<span class="edit-post">', '</span>' ); ?>
    
    					<!--END .entry-meta .entry-header-->
                        </div>
    
                      <?php } else { ?>
    
                        <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php
    if ( get_the_title() ){ $title = the_title('', '', false);
    echo evolve_truncate($title, 40, '...'); }
     ?></a></h1> 
    
                         <?php if ( current_user_can( 'edit_post', $post->ID ) ): ?>
    
    						 <?php edit_post_link( __( 'EDIT', 'evolve' ), '<span class="edit-post edit-attach">', '</span>' ); ?> 
    
                        <?php endif; ?>
    
                        <?php } ?> 
    
    					<!--BEGIN .entry-content .article-->
    					<div class="entry-content article">
    
                <?php if ($evolve_featured_images == "1") { ?>
    
            <?php
    if(has_post_thumbnail()) {
    	echo '<span class="thumbnail-post"><a href="'; the_permalink(); echo '">';the_post_thumbnail('post-thumbnail'); echo '
      <div class="mask">
         <div class="icon"></div>
         </div>  
    
      </a></span>';
    
         } else {
    
                          $image = evolve_get_first_image();
                            if ($image):
                          echo '<span class="thumbnail-post"><a href="'; the_permalink(); echo'"><img src="'.$image.'" alt="';the_title();echo'" />
                           <div class="mask">
         <div class="icon"></div>
         </div>
         </a></span>';
    
                           else:
                          echo '<span class="thumbnail-post"><a href="'; the_permalink(); echo'"><img src="'.get_template_directory_uri().'/library/media/images/no-thumbnail.jpg" alt="';the_title();echo'" />
                           <div class="mask">
         <div class="icon"></div>
         </div>
         </a></span>'; 
    
                           endif;
                   } ?>
                    <?php } ?>
    
              <?php $postexcerpt = get_the_content();
    $postexcerpt = apply_filters('the_content', $postexcerpt);
    $postexcerpt = str_replace(']]>', ']]>', $postexcerpt);
    $postexcerpt = strip_tags($postexcerpt);
    $postexcerpt = strip_shortcodes($postexcerpt);
    
    echo evolve_truncate($postexcerpt, 350, ' [...]');
     ?>
    
              <div class="entry-meta entry-footer">
    
              <div class="read-more btn btn-right icon-arrow-right">
               <a href="<?php the_permalink(); ?>"><?php _e('READ MORE', 'evolve' ); ?></a>
               </div>
    
               <?php if ( comments_open() ) : ?>
              <span class="comment-count"><?php comments_popup_link( __( 'Leave a Comment', 'evolve' ), __( '1 Comment', 'evolve' ), __( '% Comments', 'evolve' ) ); ?></span>
              <?php else : // comments are closed
               endif; ?>
              </div>
    
    					<!--END .entry-content .article-->
               <div class="clearfix"></div>
    					</div>
    
    				<!--END .hentry-->  
    
    				</div>   
    
            <?php $i='';$i++; ?> 
    
    				<?php endwhile; ?>
    				<?php get_template_part( 'navigation', 'index' ); ?>
    
    		<?php $wp_query = null; $wp_query = $temp;?>
    
    <!-- 2 or 3 columns end -->  
    
     <!-- 1 column begin --> 
    
      <?php } else { ?>    
    
     <?php
    $temp = $wp_query;
    $wp_query= null;
    $wp_query = new WP_Query();
    $wp_query->query('posts_per_page=6'.'&paged='.$paged);
    
     if (($evolve_nav_links == "before") || ($evolve_nav_links == "both")) { ?>
    				   <span class="nav-top">
    				<?php get_template_part( 'navigation', 'index' ); ?>
            </span>
    
            <?php }
    
    while ($wp_query->have_posts()) : $wp_query->the_post(); $first++;
    ?>   
    
    				<!--BEGIN .hentry-->
    					<div id="post-<?php the_ID(); ?>" class="<?php semantic_entries(); ?> <?php if (has_post_format( array('aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'),'') || is_sticky()) { echo 'formatted-post formatted-single margin-40'; } ?>">
    
              <?php $evolve_header_meta = evolve_get_option('evl_header_meta','disable'); if (($evolve_header_meta == "") || ($evolve_header_meta == "single_archive"))
            { ?>
    
            <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php if ( get_the_title() ){ the_title();} ?></a></h1>
    
    					<!--BEGIN .entry-meta .entry-header-->
    					<div class="entry-meta entry-header">
              <a href="<?php the_permalink() ?>"><span class="published updated"><?php the_time(get_option('date_format')); ?></span></a>
    
               <?php if ( comments_open() ) : ?>
              <span class="comment-count"><a href="<?php comments_link(); ?>"><?php comments_popup_link( __( 'Leave a Comment', 'evolve' ), __( '1 Comment', 'evolve' ), __( '% Comments', 'evolve' ) ); ?></a></span>
              <?php else : // comments are closed
               endif; ?>
    
              <span class="author vcard">
    
            <?php $evolve_author_avatar = evolve_get_option('evl_author_avatar','0');
           if ($evolve_author_avatar == "1") { echo get_avatar( get_the_author_meta('email'), '30' ); 
    
              } ?>
    
              <?php _e( 'Written by', 'evolve' ); ?> <strong><?php printf( '<a class="url fn" href="' . get_author_posts_url( $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( 'View all posts by %s', $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></strong></span>
    
                <?php edit_post_link( __( 'edit', 'evolve' ), '<span class="edit-post">', '</span>' ); ?>
    					<!--END .entry-meta .entry-header-->
                        </div>
    
                        <?php } else { ?>
    
                        <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php if ( get_the_title() ){ the_title();} ?></a></h1>
    
                         <?php if ( current_user_can( 'edit_post', $post->ID ) ): ?>
    
    						<?php edit_post_link( __( 'EDIT', 'evolve' ), '<span class="edit-post edit-attach">', '</span>' ); ?> 
    
                        <?php endif; ?>
    
                        <?php } ?>
    
    					<!--BEGIN .entry-content .article-->
    					<div class="entry-content article">
    
              <?php if ($evolve_featured_images == "1") { ?> 
    
                 <?php
    if(has_post_thumbnail()) {
    	echo '<span class="thumbnail-post"><a href="'; the_permalink(); echo '">';the_post_thumbnail('post-thumbnail'); echo '
      <div class="mask">
         <div class="icon"></div>
         </div>  
    
      </a></span>';
    
         } else {
    
                          $image = evolve_get_first_image();
                            if ($image):
                          echo '<span class="thumbnail-post"><a href="'; the_permalink(); echo'"><img src="'.$image.'" alt="';the_title();echo'" />
                           <div class="mask">
         <div class="icon"></div>
         </div>
         </a></span>';
    
                           else:
                          echo '<span class="thumbnail-post"><a href="'; the_permalink(); echo'"><img src="'.get_template_directory_uri().'/library/media/images/no-thumbnail.jpg" alt="';the_title();echo'" />
                           <div class="mask">
         <div class="icon"></div>
         </div>
         </a></span>'; 
    
                           endif;
                   } ?>
    
                     <?php } ?>
    
                      <?php if (($evolve_excerpt_thumbnail == "1")) { ?>             
    
              <?php the_excerpt();?>         
    
               <div class="read-more btn btn-right icon-arrow-right">
               <a href="<?php the_permalink(); ?>"><?php _e('READ MORE', 'evolve' ); ?></a>
               </div>
    
              <?php } else { ?>
    
    						<?php the_content( __('READ MORE &raquo;', 'evolve' ) ); ?>
    
                <?php wp_link_pages( array( 'before' => '<div id="page-links"><p>' . __( '<strong>Pages:</strong>', 'evolve' ), 'after' => '</p></div>' ) ); ?>
    
                <?php } ?>
    
    					<!--END .entry-content .article-->
              <div class="clearfix"></div>
    					</div>
    
    					<!--BEGIN .entry-meta .entry-footer-->
    
                        <div class="entry-meta entry-footer row">
                        <div class="col-md-6">
                         <?php if ( evolve_get_terms( 'cats' ) ) { ?>
                        	<div class="entry-categories"> <?php echo evolve_get_terms( 'cats' ); ?></div>
                          <?php } ?>
    						<?php if ( evolve_get_terms( 'tags' ) ) { ?>
    
                            <div class="entry-tags"> <?php echo evolve_get_terms( 'tags' ); ?></div>
                            <?php } ?>
    					<!--END .entry-meta .entry-footer-->
                             </div>
    
                             <div class="col-md-6">
              <?php  if (($evolve_share_this == "single_archive") || ($evolve_share_this == "all")) {
            evolve_sharethis();  } else { ?> <div class="margin-40"></div> <?php }?>
                             </div>
                        </div>
    
    				<!--END .hentry-->
    				</div>        
    
       <?php comments_template(); ?>  
    
    				<?php endwhile; ?>
    
            <?php  if (($evolve_nav_links == "") || ($evolve_nav_links == "after") || ($evolve_nav_links == "both")) { ?> 
    
    				<?php get_template_part( 'navigation', 'index' ); ?>
    
            <?php } else {?>
    
            <?php } ?>
    
    <?php $wp_query = null; $wp_query = $temp;?>
    
          <?php } ?>
    
     <!-- 1 column end -->       
    
    <!--END #primary .hfeed-->
    			</div>
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Shortcode not working in custom template’ is closed to new replies.