Tengo un indice de temas en el que uso :before para incrementar el numero del tema.
Código:
<h2>Herencia</h2>
<?php global $query_string; ?>
<?php query_posts( $query_string . '&order=ASC&posts_per_page=50&tag=herencia&post_status=publish, future' ); while ( have_posts() ) : the_post(); ?>
<?php if ($post->post_status == 'future'): ?>
<h3><?php the_title(); ?></h3>
<?php else : ?>
<h3><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php endif ; ?>
<?php endwhile; wp_reset_query();?>
Código:
h3::before { content: "Tema " counter(tema) ": "; counter-increment: tema;}
Pero en todos aparece tema 1, no se incrementa. Alguien sabe que puede pasar? he escrito algo mal?