Horizontal marquee "recent posts"
-
Hello,
this following code displays a basic horizontal marquee for the 5 recent posts. I would like that the titles are seperated by a space and a symbole of my choice. exaple: “title1 | title2 | title3…”.I hope you could help with this. I googled to find a ready marquee but I didn’t find anyone. I think many would use it a the head of the page. and it is so attractive like as a slideshow.
<marquee behavior="scroll" direction="right"> <h2> <?php $args = array( 'numberposts' => '5'); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $post ){ echo '<a href="' . get_permalink($post["ID"]) . '" title="Look '.$post["post_title"].'" >'. $post["post_title"]. '</a>'; } ?> </h2> </marquee>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Horizontal marquee "recent posts"’ is closed to new replies.