Switch colors the title of each post
-
The Facts :
I’m using a theme itself , developed in bootstrap .
I have a Custom Post Type called Business that has only , title and text ( for now ) .The presentation of this page has the CPT ‘s sequinte code:
< ? php $ newsArgs = array ( ' post_type ' = > array ( 'business' ) ' showposts ' => -1, 'order ' = > ' ASC ' ) ; query_posts ( $ newsArgs ) ; if ( have_posts ( )) while ( have_posts ( )) the_post (); ? > <div class="col-lg-4 pad25"> <div class="efx"> < / div > ???????????????<h3> < ? php the_title ( ) ; ? > < / h3 > ???????????????< ? php echo the_content ( ) ; ? > < / div > < ? php endwhile ; else: ? > <h4> soon ... < / h4 > < ? php endif ; ? >
The Need :
Must then, on this page , so the color of the title as a class to alternate efx . Ex: Post 1 (blue ); Post 2 (green ); Post 3 (blue ), and so on.Some time ago I read an article about post count and include the number of the post in the class … but do not think this article more . Also I did not find anything related to it .
Some help ? ?
*sorry by my english
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Switch colors the title of each post’ is closed to new replies.