vote up 0 vote down star

I have trouble finding an expression to automatically generate a new 'class' like the following:

<ul>
<li class="img1">link</li>
<li class="img2">link</li>
<li class="img3">link etc...</li>
</ul>

This is nested in 2 tabs for 'most read' / 'latest comments'. The different classes are so that I can make a different bullet (number) using css

I'd appreciate any potential solutions...

Looks like this is the solution to my question: http://www.webdesignerwall.com/tutorials/jquery-sequential-list/ Thanks for those that helped...

flag
1  
What programming language is this in? – blahblah Jun 12 at 12:41
skurpur, will be php within a wordpress installation, not sure if javascript may be the answer or whether it can be done direct with php... Cheers – billnanson Jun 12 at 12:45

6 Answers

vote up 0 vote down

Using jQuery:

$(function(){
  $('ul.special').each(function() {
    $('li', this).each(function(i) { this.addClass('img'+i.toString()); });
  });
});

This is written off the top of my head with the barest reference. I suggest you check out jQuery for more information, etc.

link|flag
vote up 1 vote down

This code will generate the incremental classes:

<?
class linkClass
{
        public static $n;
        public function next()
        {
                return self::$n++;
        }
}
?>

<? linkClass::$n = 1; ?>
<ul>
  <li class="link<? print(linkClass::next());?>">link</li>
  <li class="link<? print(linkClass::next());?>">link</li>
  <li class="link<? print(linkClass::next());?>">link</li>
</ul>

You would put the "print(linkClass::next());" in the line generating the links such as(not a real example):

foreach($links as $link)
  echo '<li class='.linkClass::next().'>'.$link.'</li>';
link|flag
vote up 0 vote down

From what I understand, you want to print out an unordered list with each list item having a unique class that increases by 1 each time a list item is printed?

I don't have any exprience with Wordpress, but could this not be easily done with a variable that you increase each time a list item is printed?

For example:

<ul>
  <li class="<?php echo "img","$i"; ?>>link</li><?php $i++; ?>
  <li class="<?php echo "img","$i"; ?>>link</li><?php $i++; ?>
  <li class="<?php echo "img","$i"; ?>>link etc...</li><?php $i++; ?>
</ul>

Alternatively, you could create a function that does the following: 1) Print out the number 2) Increase the value of the number by one so that the next time the function is called it prints out a higher value

This would then allow you to do the following:

function classImg() {
  echo "img", "$i";
  $i++;
}

<ul>
  <li class="<?php classImg(); ?>>link</li>
  <li class="<?php classImg(); ?>>link</li>
  <li class="<?php classImg(); ?>>link etc...</li>
</ul>

I have written this off the top of my head and so there are probably errors but I hope you understand what I am getting at.

link|flag
A simpler version of your first code example is <?php echo "img", $i++ ?>. You don't need to make the increment separate. – Ciaran McNulty Jun 13 at 18:17
and your classImg() function isn't going to work since $i isn't scoped global/static – gnarf Aug 15 at 10:38
vote up 0 vote down

Sorry for 'bumping' this back into view :o)

The detail I didn't add before:

<li> classes are to give a stylised rather than ordinary (bullet) number

I expect I need a js script to generate img1, img2, img3 - 6 classes and will use together with the wordpress calls for latest comments and an rss newsfeed.

I thought it should be simple stuff to find, but sofar zilch of wordpress forums, google etc., and I have no js programming background

Thanks for a second look Bill

link|flag
Don't post revisions as an answer to your question, revise the question instead, Bill. – The Wicked Flea Jun 13 at 13:41
Understood - thanks for the guidance TWF – billnanson Jun 13 at 14:01
vote up 1 vote down

If it's numbered would you not use an ordered list? <ol>.

Or maybe I'm missing a point here. Are you using a higher level language to create this html? or tool?

link|flag
Wordpress is PHP, you should be able to tell this straight from the tags of the question, dove. – The Wicked Flea Jun 13 at 13:40
@The Wicked Flea eh, i would have but those tags were added afterwards by @Jamie Ide, probably after reading @billnanson comment. – dove Jun 15 at 8:40
@dove: My only edits were to add php and wordpress tags. – Jamie Ide Jun 15 at 14:27
@Jamie Ide, that's my point, for the wicked flea, before you tags and the other comment, there was no clue it was php as the flea was suggesting I should be able to tell. no sweat really. – dove Jun 15 at 14:47
vote up 0 vote down

You would want to either generate the classes server-side, or using javascript if you want them to change at runtime.

link|flag
AgileJon, I want to add an image - so particular number style - doing this with css – billnanson Jun 12 at 12:47
sorry comment was for 'dove' ;-) Is the a js library where I would find this or could you make a suggestion Thanks, Bill – billnanson Jun 12 at 12:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.