treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Read more link into button?

  • I'm trying to change the read more link on my wordpress post excerpts from a read more link to a button.

    is this possible? if so how could I achieve this?

    I'm using the

    <?php the_excerpt(''); ?> 
    

    and my function is

    <?php // Changing excerpt more
       function new_excerpt_more($more) {
       global $post;
       return ' <br>ID) . '">' . 'Read More »' . '';
       }
       add_filter('excerpt_more', 'new_excerpt_more');
    ?>  
    
  • hmm my function didn't show up properly, anyway I'm sure some of you get the idea?

    Thanks for the help if anyone can help me out on this.