Forums

Graphical Buttons for Sidebar page links? (2 posts)

  1. nova.pon
    Member
    Posted 1 week ago #

    How can I use graphical buttons instead of text for the "Pages Widget" pages links in the sidebar? I haven't been able to find anything on this anywhere. I'm trying to convert a website that was done just with html to one done with Wordpress while keeping the same look. The page is www.novamusic.ca and I'm trying to find away do the rollover graphical navigation menu in Wordpress. Thanks!!

  2. wp_guy
    Member
    Posted 1 week ago #

    You could do something like this:

    <?php
    foreach(get_pages() as $page){
        echo "<a href=\"$page->guid\">";
        echo "<img src=\"/images/$page->post_name.jpg\" />";
        echo "</a>";
    }
    ?>

Reply

You must log in to post.

About this Topic