auto hyperlink each word in each post

Discussion in 'PHP' started by VijayKudal.com, Nov 29, 2012.

  1. #1
    VijayKudal.com, Nov 29, 2012 IP
  2. ronaldsg

    ronaldsg Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #2
    You should look into WordPress filter api. What you want to do is hook function to display of post content and in that function format the content as needed.
    This example will strip all tags from post content and wrap everything in one anchor tag.
    
    
    add_filter('the_content', 'hyperlink_everything');
    
    function hyperlink_everything($content) {
        $content = strip_tags($content);
        return '<a href="#">'.$content.'</a>';
    }
    
    PHP:
     
    ronaldsg, Nov 29, 2012 IP
  3. DennisKnows

    DennisKnows Active Member

    Messages:
    265
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    63
    #3
    I use SEO ultimate plugin for Wordpress... Just enter the words you want to turn into hyperlinks and it does the rest... You can turn all the other features off if you like.
     
    DennisKnows, Nov 29, 2012 IP