Jump to content

Wordpress - Adding Number Before Item


flavaflav37

Recommended Posts

Hi folks,

 

I have a Wordpress loop which displays portfolio items, and I would basically like to add a number to each item in that loop, before the item name (ie; 01 - A portfolio item, 02 - A portfolio item, 03 - A portfolio item etc...)

 

Quite basic, but how do I achieve this?

 

 

thanks

Link to comment
Share on other sites

  • 2 weeks later...

Hi Jessica,

 

Apologies, have been away, only just spotted your reply.

 

My current code -

 

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
			 <?php $cur_terms = get_the_terms( $post->ID, 'project-type' );
			 foreach ( (array) $cur_terms as $cur_term ) {  
			 }?>

				 <article class="one-third column item <?php echo strtolower($cur_term->slug); ?>" data-filter="">

				  <div class="thumbnail">

				   <a data-lightbox="width:940;height:550" data-overlayer="overlayDefault:overlay-default portfolio" href="<?php echo get_post_meta($post->ID, 'portfolio_video_url', true) ?>?autoplay=1">
					   <?php the_post_thumbnail('latest-thumb'); ?>
					   <div class="roll">
						   <em>
						   <i class="icon-film icon-large"></i>
						   view project
						   </em>
					   </div>
				   </a><!-- end lightbox -->

				  </div><!-- end .thumbnail -->

				  <h2>01 | <a data-lightbox="width:940;height:550" href="<?php echo get_post_meta($post->ID, 'portfolio_video_url', true) ?>?autoplay=1"><?php the_title(); ?></a></h2>
				  <?php if ( get_post_meta($post->ID, 'project_date', true) ) : ?>
				  <p>~ <strong><?php echo get_post_meta($post->ID, 'project_date', true) ?></strong></p>
				  <?php endif; ?>

				 </article><!-- end article -->

			    <?php endwhile; endif; ?>

 

As you can see in the H2 tag i currently have it set static, which of course loops through, and shows 01 for all entries currently, which is what I want to change.

 

Thanks in advance

Link to comment
Share on other sites

Hi folks,

 

Fixed this with the following -

 

<?php $i=1; ?>
			 <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
			 <?php $cur_terms = get_the_terms( $post->ID, 'project-type' );
			 foreach ( (array) $cur_terms as $cur_term ) {  
			 }?>

				 <article class="one-third column item <?php echo strtolower($cur_term->slug); ?>" data-filter="">

				  <div class="thumbnail">

				   <a data-lightbox="width:940;height:550" data-overlayer="overlayDefault:overlay-default portfolio" href="<?php echo get_post_meta($post->ID, 'portfolio_video_url', true) ?>?autoplay=1">
					   <?php the_post_thumbnail('latest-thumb'); ?>
					   <div class="roll">
						   <em>
						   <i class="icon-film icon-large"></i>
						   view project
						   </em>
					   </div>
				   </a><!-- end lightbox -->

				  </div><!-- end .thumbnail -->

				  <h2><?php
				  echo str_pad($i++,2,'0',STR_PAD_LEFT);
				  ?> | <a data-lightbox="width:940;height:550" href="<?php echo get_post_meta($post->ID, 'portfolio_video_url', true) ?>?autoplay=1"><?php the_title(); ?></a></h2>
				  <?php if ( get_post_meta($post->ID, 'gt_project_date', true) ) : ?>
				  <p>~ <strong><?php echo get_post_meta($post->ID, 'project_date', true) ?></strong></p>
				  <?php endif; ?>

				 </article><!-- end article -->

			    <?php endwhile; endif; ?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.