Saltar navegación

[Resuelto] Display Post number

Este hilo está resuelto. Aquí tiene una descripción del problema y la solución.

Problem:

The issue here is that the user wanted to display the index number of a post in a view loop.

Solution:
There is a way to do this using the [wpv-loop-index] shortcode.
https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#vf-1195331

How this works is that it displays the current loop index of the item being displayed. The only thing that you will need to do is to sort your view based on some sortable attribute to ensure that the first item that displays is actually episode 1.

This support ticket is created hace 4 años, 3 meses. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 -
- 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 14:00 – 18:00 13:00 – 18:00 -

Supporter timezone: America/Jamaica (GMT-05:00)

Etiquetado: 

Este tema contiene 2 respuestas, tiene 2 mensajes.

Última actualización por stewartE hace 4 años, 3 meses.

Asistido por: Shane.

Autor
Mensajes
#1975735
episodes.PNG

I have a list of posts in a view. I want to display an incremental number on each post (to serve as an episode number)

I can't use something like the post ID because there will be other post types and posts will also get deleted which would throw the sequence out. I can't add a custom field and manually add the number as there may be 100s of episodes and i will also be pulling into different views which could throw the sequence out.

So is there a way to add an incremental number to posts in a view like this?

1
2
3
4
5

Thanks!

#1975867

Shane
Colaborador

Idiomas: Inglés (English )

Zona horaria: America/Jamaica (GMT-05:00)

Hi Stewart,

Thank you for getting in touch.

There is a way to do this using the [wpv-loop-index] shortcode.
https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#vf-1195331

How this works is that it displays the current loop index of the item being displayed. The only thing that you will need to do is to sort your view based on some sortable attribute to ensure that the first item that displays is actually episode 1.

Please let me know if this helps.
Thanks,
Shane

#1978207

My issue is resolved now. Thank you!