|
Count the number of posts
Started by: Nicholas
in: Toolset Professional Support
Quick solution available
Problem:
I would like to display the number 1 for the first post of the list, number 2 for the second one in the list, and number 3 for the third one.
Solution:
1. Please add the following code in your theme’s functions.php file:
add_shortcode('incrementor', 'incrementor');
function incrementor() {
static $i = 1;
return $i ++;
}
2. Then use [incrementor] shortcode in your Views loop.
|
|
2 |
3 |
7 years, 1 month ago
Nicholas
|