Title: problem in adding post title in link
Last modified: August 24, 2016

---

# problem in adding post title in link

 *  Resolved [erboy](https://wordpress.org/support/users/erboy/)
 * (@erboy)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/problem-in-adding-post-title-in-link-1/)
 * I am using adcenter ads, which are as- [http://ads.ad-center.com/offer?prod=101&ref=5030200&q=](http://ads.ad-center.com/offer?prod=101&ref=5030200&q=)**
   Keyword**.
    Now i want to replace Keyword in link with post title automatically.
   i have tried this code, but it return first word from title, code is-
 *     ```
       <?php
        $title = get_the_title();
        echo "<a href=http://ads.ad-center.com/offer?prod=101&ref=5030200&q=$title >Download</a>"
       ?>
       ```
   
 * please solve it or tell me other method to add title in link automatically.
    
   Thanks

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Martin Robbins](https://wordpress.org/support/users/santeven/)
 * (@santeven)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/problem-in-adding-post-title-in-link-1/#post-6159804)
 * You are welcome, I would try it like this:
 *     ```
       <?php
   
       // yours
        $title = get_the_title();
        echo "<a href=http://ads.ad-center.com/offer?prod=101&ref=5030200&q=$title >Download</a>"
   
        // mine
        $title = get_the_title();
        echo '<a href="http://ads.ad-center.com/offer?prod=101&ref=5030200&q=' . $title . '">Download</a>';
   
       ?>
       ```
   
 *  Thread Starter [erboy](https://wordpress.org/support/users/erboy/)
 * (@erboy)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/problem-in-adding-post-title-in-link-1/#post-6159815)
 * Thanks santeven very much. It’s working

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘problem in adding post title in link’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [erboy](https://wordpress.org/support/users/erboy/)
 * Last activity: [10 years, 12 months ago](https://wordpress.org/support/topic/problem-in-adding-post-title-in-link-1/#post-6159815)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
