Title: cy-one's Replies | WordPress.org

---

# cy-one

  [  ](https://wordpress.org/support/users/cy-one/)

 *   [Profile](https://wordpress.org/support/users/cy-one/)
 *   [Topics Started](https://wordpress.org/support/users/cy-one/topics/)
 *   [Replies Created](https://wordpress.org/support/users/cy-one/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/cy-one/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/cy-one/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/cy-one/engagements/)
 *   [Favorites](https://wordpress.org/support/users/cy-one/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to open a Quick Launch Link in a New Window…?](https://wordpress.org/support/topic/how-to-open-a-quick-launch-link-in-a-new-window/)
 *  [cy-one](https://wordpress.org/support/users/cy-one/)
 * (@cy-one)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/how-to-open-a-quick-launch-link-in-a-new-window/#post-1096047)
 * I’ve made a small modification to the files “functions.php” and “useroptions.
   php” to make it possible to actually CHOOSE weither a link should be opened in
   a new window or not.
 * _functions.php_, search vor line
    `echo '<li><a href="'.$qla[$key].'">'.$qlt[
   $key].'</a></li>';` replace with `echo '<li><a href="'.$qla[$key].'"'.(($qlw[
   $key]==1)?' target="_blank"':'').'>'.$qlt[$key].'</a></li>';`
 * _useroptions.php_ (if not changed), search for
    `$qla[1] = 'http://www.wordpress.
   org/';` insert after
 *     ```
       // Target for Quicklunch Button
         // 1 = Open link in a new window
         // 0 = Open link in same window
         // Anything else defaults to Open link in same window
         $qlw[0] = 0;
         $qlw[1] = 1;
       ```
   
 * if you changed the default Quicklaunch-links, edit the new paragraph (shown above)
   to match the Quicklaunch-rules (for each Quicklaunch-link, you need a $qlw[numer]
   = 0 or 1, like you need a text for each. It follows the same rules).

Viewing 1 replies (of 1 total)