Thursday 15 March 2012

php - Display list of post titles with specific tags at the beginning of current post -



php - Display list of post titles with specific tags at the beginning of current post -

i want, shortcode, that, if chose alternative current post, displays @ origin of current post list of posts specific tag, posted before post. also, @ end of post should placed posts publish in future tag. possible? :)

<li>title of first post specific tag</li> <li>title of sec post specific tag</li> . . . <li class="current-post">this post title</li> <li>title of 4th post specific tag</li> <li>title of 5th post specific tag</li> . . .

 thank you!

<?php //starting loop getting post of custom post type while ($custom_query->have_posts()) : $custom_query->the_post(); $title=get_the_title($post->id); ?> <!-- code print title of post , link on --> <li><a title="<?php echo $title; ?>"href="<?php the_permalink(post->id);?>"><?php echo $title; ?></a></li> <?php endwhile; ?> //end loop

php wordpress shortcode

No comments:

Post a Comment