<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Topic: How to open a Quick Launch Link in a New Window...?</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Topic: How to open a Quick Launch Link in a New Window...?</description>
<language>en</language>
<pubDate>Tue, 24 Nov 2009 04:48:18 +0000</pubDate>

<item>
<title>harimulyanto on "How to open a Quick Launch Link in a New Window...?"</title>
<link>http://wordpress.org/support/topic/276798#post-1206314</link>
<pubDate>Thu, 10 Sep 2009 08:48:23 +0000</pubDate>
<dc:creator>harimulyanto</dc:creator>
<guid isPermaLink="false">1206314@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Yes, it is work.. change function.php line 282 :&#60;/p&#62;
&#60;p&#62;&#60;code&#62;echo &#38;#39;&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39;.$qla[$key].&#38;#39;&#38;quot; target=&#38;quot;_blank&#38;quot;&#38;gt;&#38;#39;.$qlt[$key].&#38;#39;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;#39;;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chschenk on "How to open a Quick Launch Link in a New Window...?"</title>
<link>http://wordpress.org/support/topic/276798#post-1115467</link>
<pubDate>Wed, 24 Jun 2009 21:59:43 +0000</pubDate>
<dc:creator>chschenk</dc:creator>
<guid isPermaLink="false">1115467@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Open the file &#60;code&#62;functions.php&#60;/code&#62; of that theme, search for the function &#60;code&#62;insert_quicklaunch&#60;/code&#62; and have a look at the line after the &#60;code&#62;foreach&#60;/code&#62;. It echos the &#60;code&#62;a&#60;/code&#62; element and you can add the &#60;code&#62;target=&#38;quot;_BLANK&#38;quot;&#60;/code&#62; there. Does that work?
&#60;/p&#62;</description>
</item>
<item>
<title>sheiksoft on "How to open a Quick Launch Link in a New Window...?"</title>
<link>http://wordpress.org/support/topic/276798#post-1115450</link>
<pubDate>Wed, 24 Jun 2009 21:49:42 +0000</pubDate>
<dc:creator>sheiksoft</dc:creator>
<guid isPermaLink="false">1115450@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Bump...Anybody Help me please...
&#60;/p&#62;</description>
</item>
<item>
<title>sheiksoft on "How to open a Quick Launch Link in a New Window...?"</title>
<link>http://wordpress.org/support/topic/276798#post-1092768</link>
<pubDate>Fri, 05 Jun 2009 15:01:40 +0000</pubDate>
<dc:creator>sheiksoft</dc:creator>
<guid isPermaLink="false">1092768@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am using Inanis Glass Theme and it works good. I want to know how to open a Quick Launch link in a new window. When I click now its opening in the same window. In HTML I can simply do this:&#60;br /&#62;
&#60;code&#62;&#38;lt;a href=&#38;quot;...&#38;quot; target=&#38;quot;_BLANK&#38;quot;&#38;gt;...&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;But in PHP and specifically from his Code I dont know how to figure it out... This is the following code which I found in Useroptions.php&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* QUICKLAUNCH BAR OPTIONS */

// The QuickLaunch bar is the area of buttons between the Options Orb and the
// Page/Category buttons on the Task Bar. To see a demo, just change
// $QuickLaunch below to 1, save/upload this file and refresh your blog page.
// $QuickLaunch determines if the QuickLaunch area is shown.
// $qla[x] and $qlt[x] array entries determine what to show in each QuickLaunch
// button. MAKE SURE YOU HAVE THE SAME NUMBER OF $qla THAT YOU HAVE OF $qlt
// AND VICE VERSA. MAKE SURE THAT YOUR LISTS OF $qla AND $qlt GO IN NUMERICAL
// ORDER. FAILURE TO OBSERVE THESE RULES WILL RESULT IN BREAKAGE.
// 0 = Don&#38;#39;t Display QuickLaunch.
// 1 = Display QuickLaunch
// Anything else defaults to Don&#38;#39;t Display QuickLaunch
  $QuickLaunch = 1;

  // URLs for QuickLaunch Buttons
  $qla[0] = &#38;#39;http://www.inanis.net/&#38;#39;;
  $qla[1] = &#38;#39;http://www.wordpress.org/&#38;#39;;
$qla[2] = &#38;#39;http://www.pcsafety.us/&#38;#39;;

  // Text for QuickLaunch Buttons (should be no more than 2 characters)
  // You can also place an image of no more than 19px wide by 22px high, that is
  // if you know how. You can use the examples below for help.
  $qlt[0] = &#38;#39;&#38;lt;img src=&#38;quot;&#38;#39;.get_bloginfo(&#38;#39;template_directory&#38;#39;).&#38;#39;/images/void-button.png&#38;quot; alt=&#38;quot; &#38;quot; title=&#38;quot;Visit Inanis.net&#38;quot; /&#38;gt;&#38;#39;;
  $qlt[1] = &#38;#39;&#38;lt;span title=&#38;quot;Visit WordPress.org&#38;quot;&#38;gt;WP&#38;lt;/span&#38;gt;&#38;#39;;
$qlt[2] = &#38;#39;&#38;lt;span title=&#38;quot;Visit PCSafety.us&#38;quot;&#38;gt;PCS&#38;lt;/span&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Please Help me with this..Hope somebody will hear my sound in Wordpress Forums.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
