Moving Text Marquee at WordPress Tutorial
Actually I wrote HTML marquee tutorial long time ago at Moving text marquee tutorial. But some reader confused if it apply in wordpress.
So here it is the way to make your sidebar text moving .
1. Find out what text that you want to move and grab the PHP code .
2. IF I want to change make my “latest post” move, that mean I must find the PHP code of “latest post”
<?php wp_get_archives(‘type=postbypost&limit=10′); ?>
3. Put the marquee code that U get from Moving text marquee tutorial. between them
example :
<marquee direction=”up” height=”200″ scrollamount=”2″ onmouseover=”this.stop()” onmouseout=”this.start()” width=”100%” align=”center”>
<?php wp_get_archives(‘type=postbypost&limit=10′); ?>
</marquee>
Explanation :
direction=”up” : from bottom to up movement
scrollamount=”2″ : Speed of the movement
onmouseover=”this.stop()” : When mouse over the text, the text will stop
onmouseout=”this.start()” : When mouse out from text area the marquee code will move again
width=”100%” : Width 100% from the table
Hope it clear enough.
Incoming search terms:
- wordpress marquee (37)
- marquee wordpress (27)
- marquee in wordpress (17)
- wordpress marquee text (16)
- how to add marquee in wordpress (14)
- marquee for wordpress (13)
- wordpress moving text (10)
- moving text wordpress (7)
- wordpress marquee post (5)
- how to adda marguee to a wordpress com site (3)
Tags: blog, html, marquee, Moving Text, PHP, Tutorial, wordpress —


No comments yet.